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 6.00+dfgs.
[syslinux-debian/hramrach.git]
/
com32
/
lib
/
strtox.c
blob
e01247acb16e54db1470cbc38c476d3dc8386471
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
}