shithub: plan9front

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