repo.or.cz
/
syslinux
/
sherbszt.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
syslinux_boot_linux(): revert to text mode unless vga=current
[syslinux/sherbszt.git]
/
dos
/
strtoul.c
blob
3be94307a7f610b5fafe47cfb1e36f40726abdba
1
/*
2
* strtoul.c
3
*
4
* strtoul() function
5
*/
6
7
#include <stddef.h>
8
#include <inttypes.h>
9
10
extern
uintmax_t
strntoumax
(
const char
*
nptr
,
char
**
endptr
,
int
base
,
size_t
n
);
11
12
unsigned long
strtoul
(
const char
*
nptr
,
char
**
endptr
,
int
base
)
13
{
14
return
(
unsigned long
)
strntoumax
(
nptr
,
endptr
,
base
, ~(
size_t
)
0
);
15
}