shithub: riscv

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