shithub: plan9front

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