shithub: front

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