NAME
iswcntrl - test for control wide character
SYNOPSIS
#include <wctype.h> int iswcntrl(wint_t wc);
DESCRIPTION
The iswcntrl() function is the wide-character equivalent of the iscntrl(3) function. It tests whether wc is a wide character belonging to the wide-character class "cntrl". The wide-character class "cntrl" is disjoint from the wide-character class "print" and therefore also disjoint from its subclasses "graph", "alpha", "upper", "lower", "digit", "xdigit", "punct". For an unsigned char c, iscntrl(c) implies iswcntrl(btowc(c)), but not vice versa.
RETURN VALUE
The iswcntrl() function returns nonzero if wc is a wide character belonging to the wide-character class "cntrl". Otherwise, it returns zero.
ATTRIBUTES
For an explanation of the terms used in this section, see attributes(7). Interface Attribute Value iswcntrl() Thread safety MT-Safe locale
CONFORMING TO
POSIX.1-2001, POSIX.1-2008, C99.
NOTES
The behavior of iswcntrl() depends on the LC_CTYPE category of the current locale.
SEE ALSO
iscntrl(3), iswctype(3)
COLOPHON
This page is part of release 4.09 of the Linux man-pages project. A description of the project, information about reporting bugs, and the latest version of this page, can be found at https://www.kernel.org/doc/man-pages/.
More Linux Commands
manpages/FcAtomicReplaceOrig.3.html
FcAtomicReplaceOrig(3) - replace original with new (ManPage)
Replaces the original file referenced by atomic with the new file. Returns FcFalse if the file cannot be replaced due to permission issues in the filesystem. Ot
manpages/gnutls_openpgp_keyring_check_id.3.html
gnutls_openpgp_keyring_check_id(3) - API function (ManPage)
Check if a given key ID exists in the keyring. RETURNS GNUTLS_E_SUCCESS on success (if keyid exists) and a negative error code on failure. REPORTING BUGS Report
manpages/ExtUtils::XSSymSet.3pm.html
ExtUtils::XSSymSet(3pm) - keep sets of symbol names palatabl
Since the VMS linker distinguishes symbols based only on the first 31 characters of their names, it is occasionally necessary to shorten symbol names in order t
manpages/uselocale.3.html
uselocale(3) set get the locale for the calling thread......
The uselocale() function sets the current locale for the calling thread, and returns the threads previously current locale. After a successful call to uselocale
manpages/git-shortlog.1.html
git-shortlog(1) - Summarize git log output - Linux man page
Summarizes git log output in a format suitable for inclusion in release announcements. Each commit will be grouped by author and title. Additionally, [PATCH] wi
manpages/SDL_CDResume.3.html
SDL_CDResume(3) - Resumes a CDROM - Linux manual page.......
Resumes play on the given cdrom. RETURN VALUE Returns 0 on success, or -1 on an error. SEE ALSO SDL_CDPlay, SDL_CDPause SDL_CDResume.3 (Library - Linux manual p
manpages/rateup.1.html
rateup(1) backend tool used by mrtg - Linux manual page.....
This manual page documents briefly the rateup command. This manual page was written for the Debian GNU/Linux distribution because the original program does not
manpages/gnucash.1.html
gnucash(1) personal finance manager - Linux manual page.....
GnuCash is a personal accounting package that allows you to record and track income, expenses, assets, and investments. It supports reconciliation, has substant
manpages/gnutls_credentials_set.3.html
gnutls_credentials_set(3) - API function - Linux man page...
Sets the needed credentials for the specified type. Eg username, password - or public and private keys etc. The cred parameter is a structure that depends on th
manpages/rt_tgsigqueueinfo.2.html
rt_tgsigqueueinfo(2) - queue a signal and data to a process
RETURN VALUE ERRORS VERSIONS CONFORMING TO NOTES SEE ALSO COLOPHON NAME rt_sigqueueinfo - queue a signal and data to a process SYNOPSIS long sys_rt_sigqueueinfo
manpages/fputwc.3.html
fputwc(3) - write a wide character to a FILE stream.........
fputwc.3 - The fputwc() function is the wide-character equivalent of the fputc(3) function. It writes the wide character wc to stream. If ferror(stream) becomes
manpages/frexpl.3.html
frexpl(3) - convert floating-point number to fractional and
The frexp() function is used to split the number x into a normalized fraction and an exponent which is stored in exp. RETURN VALUE The frexp() function returns
