repo.or.cz
/
syslinux.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
CLI: Delete 'temp_cmdline' and put 'cmdline' on the stack
[syslinux.git]
/
memdump
/
skipatou.c
blob
655ab565273c84bdb908cce62eed3783249199bd
1
#include
"mystuff.h"
2
3
unsigned int
skip_atou
(
const char
**
s
)
4
{
5
int
i
=
0
;
6
7
while
(
isdigit
(**
s
))
8
i
=
i
*
10
+ *((*
s
)++) -
'0'
;
9
return
i
;
10
}