shithub: plan9front

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