shithub: front

ref: e2224a90bb2455993363efe52e005b2fe9c78cdd
dir: /sys/src/libc/port/atoll.c/

View raw version
#include <u.h>
#include <libc.h>

vlong
atoll(char *s)
{
	return strtoll(s, nil, 10);
}