repo.or.cz
/
musl.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
fcntl.h: add AT_STATX_ statx sync flag definitions
[musl.git]
/
src
/
ctype
/
isblank.c
blob
716da23a566155ebc90646751a3be838523c0c10
1
#include <ctype.h>
2
3
int
isblank
(
int
c
)
4
{
5
return
(
c
==
' '
||
c
==
'
\t
'
);
6
}
7
8
int
__isblank_l
(
int
c
,
locale_t l
)
9
{
10
return
isblank
(
c
);
11
}
12
13
weak_alias
(
__isblank_l
,
isblank_l
);