repo.or.cz
/
nvi.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Add preliminary db1.c from Aymeric Vincent <xmimic@free.fr>
[nvi.git]
/
clib
/
iswblank.c
blob
a6c92ca3fbf1acefd328124c75e9a667930b8cf5
1
#include
"config.h"
2
3
#if defined(LIBC_SCCS) && !defined(lint)
4
static const char
sccsid
[] =
"$Id: iswblank.c,v 1.1 2001/10/11 19:22:29 skimo Exp $"
;
5
#endif
/* LIBC_SCCS and not lint */
6
7
#include <wchar.h>
8
#include <wctype.h>
9
10
int
11
iswblank
(
wint_t
wc
)
12
{
13
return
iswctype
(
wc
,
wctype
(
"blank"
));
14
}