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