shithub: plan9front

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