projects
/
profile
/
ivi
/
syslinux.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Merge remote branch 'erwan/master_new'
[profile/ivi/syslinux.git]
/
dos
/
skipatou.c
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
}