shithub: front

ref: 8fe1d622b5b46dee51db6581282ec1fba76782b1
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);
}