repo.or.cz
/
minix3.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
. use library function to parse memory string
[minix3.git]
/
lib
/
ansi
/
isspace.c
blob
2e5fcf47b3f21165cc90a59f37366460ab45b8f8
1
#include <ctype.h>
2
3
int
(
isspace
)(
int
c
) {
4
return
isspace
(
c
);
5
}