home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
DP Tool Club 8
/
CDASC08.ISO
/
VRAC
/
CUJJUN93.ZIP
/
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);
}