repo.or.cz
/
libc-test.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
flockfile list corruption test
[libc-test.git]
/
src
/
regression
/
iswspace-null.c
blob
4afb89b82ddc5702f25e8d211160b7a1a64c7bb1
1
// commit: d8e8f1464cb02d6a62f01c7153ca4d7b0cd5c5e6 2013-11-11
2
// iswspace(0) should be 0
3
#include <wctype.h>
4
#include
"test.h"
5
6
int
main
(
void
)
7
{
8
if
(
iswspace
(
0
)!=
0
)
9
t_error
(
"iswspace(0) returned non-zero
\n
"
);
10
return
t_status
;
11
}