shithub: plan9front

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