index
:
fflibc
main
Marc Pervaz Boocha
about
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
memory
/
atol.c
blob: 27f644ede67e073c012b9107d9c205dc2485c683 (
plain
) (
blame
)
1
2
3
#include
"memory.h"
long
atol
(
char
const
*
string
)
{
return
_strtol_wrap
(
string
,
NULL
,
10
);
}