home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The C Users' Group Library 1994 August
/
wc-cdrom-cusersgrouplibrary-1994-08.iso
/
listings
/
v_11_06
/
1106014a
< prev
next >
Wrap
Text File
|
1993-04-12
|
224b
|
14 lines
#include <wchar.h>
static wchar_t hirigana = wctype("hirigana");
int ishiri(wchar_t *wcs)
{ /* test each element of string */
while (*wcs)
if (!iswctype(*wcs++, hirigana))
return (0);
return (1);
}