shithub: plan9front

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