shithub: front

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