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
/
strtox.c
blob
7c228b6fa4fdd80d0615b89899e52aa37986d0d6
1
/*
2
* strtox.c
3
*
4
* strto...() functions, by macro definition
5
*/
6
7
#include <stddef.h>
8
#include <inttypes.h>
9
10
TYPE
NAME
(
const char
*
nptr
,
char
**
endptr
,
int
base
)
11
{
12
return
(
TYPE
)
strntoumax
(
nptr
,
endptr
,
base
, ~(
size_t
)
0
);
13
}