shithub: front

ref: 005bd2b7e10b0084f74d1af3f9523551348b31d9
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);
}