shithub: plan9front

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