shithub: front

ref: 2273121e1cfe765f30467bdab842cae8b0d88cd3
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);
}