DEBSOURCES
Skip Quicknav
sources / 9base / 1%3A6-5 / lib9 / atoi.c
123456789
#include <u.h> #include <libc.h> int atoi(char *s) { return strtol(s, 0, 0); }