shithub: front

ref: 4e5d75d7a6ebbd2ea8111128fe772630e5d46abd
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);
}