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.03~pre1+dfsg.
[syslinux-debian/hramrach.git]
/
com32
/
lib
/
strntoimax.c
blob
a3f40100ebfb2bf10acdeaef43fc059229a40fac
1
/*
2
* strntoimax.c
3
*
4
* strntoimax()
5
*/
6
7
#include <stddef.h>
8
#include <inttypes.h>
9
10
intmax_t
strntoimax
(
const char
*
nptr
,
char
**
endptr
,
int
base
,
size_t
n
)
11
{
12
return
(
intmax_t
)
strntoumax
(
nptr
,
endptr
,
base
,
n
);
13
}