repo.or.cz
/
syslinux-debian
/
hramrach.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Adding upstream version 3.35.
[syslinux-debian/hramrach.git]
/
com32
/
lib
/
atox.c
blob
56f8d93b40039ed92485df1571c8630f1c4dbabc
1
/*
2
* atox.c
3
*
4
* atoi(), atol(), atoll()
5
*/
6
7
#include <inttypes.h>
8
#include <stdlib.h>
9
#include <stdio.h>
10
11
TYPE
NAME
(
const char
*
nptr
)
12
{
13
return
(
TYPE
)
strntoumax
(
nptr
, (
char
**)
NULL
,
10
, ~(
size_t
)
0
);
14
}