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
/
skipspace.c
blob
5db265191625154230708e50f9df160e6630f2b1
1
#include <ctype.h>
2
3
char
*
skipspace
(
const char
*
p
)
4
{
5
while
(
isspace
((
unsigned char
)*
p
))
6
p
++;
7
return
(
char
*)
p
;
8
}