MirBSD manpage: iswalnum(3), iswalpha(3), iswblank(3), iswcntrl(3), iswdigit(3), iswgraph(3), iswlower(3), iswprint(3), iswpunct(3), iswspace(3), iswupper(3), iswxdigit(3)

ISWALNUM(3)                BSD Programmer's Manual                 ISWALNUM(3)

NAME

     iswalnum, iswalpha, iswblank, iswcntrl, iswdigit, iswgraph, iswlower,
     iswprint, iswpunct, iswspace, iswupper, iswxdigit - wide character clas-
     sification utilities

SYNOPSIS

     #include <wctype.h>

     int
     iswalnum(wint_t wc);

     int
     iswalpha(wint_t wc);

     int
     iswblank(wint_t wc);

     int
     iswcntrl(wint_t wc);

     int
     iswdigit(wint_t wc);

     int
     iswgraph(wint_t wc);

     int
     iswlower(wint_t wc);

     int
     iswprint(wint_t wc);

     int
     iswpunct(wint_t wc);

     int
     iswspace(wint_t wc);

     int
     iswupper(wint_t wc);

     int
     iswxdigit(wint_t wc);

DESCRIPTION

     The functions are character classification utility functions, for use
     with wide characters (wchar_t or wint_t). See the description of single-
     byte classification functions, like isalnum(3), for details.

RETURN VALUES

     The functions return zero if the character tests false and return non-
     zero if the character tests true.

SEE ALSO

     isalnum(3), isalpha(3), isblank(3), iscntrl(3), isdigit(3), isgraph(3),
     islower(3), isprint(3), ispunct(3), isspace(3), isupper(3), isxdigit(3)

STANDARDS

     The functions conform to ISO/IEC 9899:1999 ("ISO C99").

CAVEATS

     The argument to these functions must be WEOF or a valid wchar_t value
     with the current locale; otherwise, the result is undefined.

MirBSD #10-current            December 22, 2000                              1

Generated on 2022-12-24 01:00:14 by $MirOS: src/scripts/roff2htm,v 1.113 2022/12/21 23:14:31 tg Exp $ — This product includes material provided by mirabilos.

These manual pages and other documentation are copyrighted by their respective writers; their sources are available at the project’s CVSweb, AnonCVS and other mirrors. The rest is Copyright © 2002–2022 MirBSD.

This manual page’s HTML representation is supposed to be valid XHTML/1.1; if not, please send a bug report — diffs preferred.

Kontakt / Impressum & Datenschutzerklärung