shithub: plan9front

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