GitBucket
Toggle navigation
Pull requests
Issues
Snippets
Sign in
Files
Branches
1
Releases
Fork
: 0
uBixOS
/
little-o
Transfer to URL with SHA
Find file
Newer
Older
branch:
master
Branches
Tags
×
master
little-o
/
src
/
lib
/
libc_old
/
stdlib
/ atoi.c
reddawg
on 11 Oct 2005
99 bytes
Removed
Raw
Blame
History
#include <stdlib.h> int atoi(const char *str) { return (int)strtol(str, (char **)NULL, 10); }