Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

wctype(3) [freebsd man page]

WCTYPE(3)						   BSD Library Functions Manual 						 WCTYPE(3)

NAME
iswctype, wctype -- wide character class functions LIBRARY
Standard C Library (libc, -lc) SYNOPSIS
#include <wctype.h> int iswctype(wint_t wc, wctype_t charclass); wctype_t wctype(const char *property); DESCRIPTION
The wctype() function returns a value of type wctype_t which represents the requested wide character class and may be used as the second argument for calls to iswctype(). The following character class names are recognised: alnum cntrl ideogram print space xdigit alpha digit lower punct special blank graph phonogram rune upper The iswctype() function checks whether the wide character wc is in the character class charclass. RETURN VALUES
The iswctype() function returns non-zero if and only if wc has the property described by charclass, or charclass is zero. The wctype() function returns 0 if property is invalid, otherwise it returns a value of type wctype_t that can be used in subsequent calls to iswctype(). EXAMPLES
Reimplement iswalpha(3) in terms of iswctype() and wctype(): int myiswalpha(wint_t wc) { return (iswctype(wc, wctype("alpha"))); } SEE ALSO
ctype(3), nextwctype(3) STANDARDS
The iswctype() and wctype() functions conform to IEEE Std 1003.1-2001 (``POSIX.1''). The ``ideogram'', ``phonogram'', ``special'', and ``rune'' character classes are extensions. HISTORY
The iswctype() and wctype() functions first appeared in FreeBSD 5.0. BSD
March 27, 2004 BSD

Check Out this Related Man Page

WCTYPE(3)						   BSD Library Functions Manual 						 WCTYPE(3)

NAME
iswctype, iswctype_l, wctype, wctype_l -- wide character class functions LIBRARY
Standard C Library (libc, -lc) SYNOPSIS
#include <wctype.h> int iswctype(wint_t wc, wctype_t charclass); wctype_t wctype(const char *property); #include <wctype.h> #include <xlocale.h> int iswctype_l(wint_t wc, wctype_t charclass, locale_t loc); wctype_t wctype_l(const char *property, locale_t loc); DESCRIPTION
The wctype() function returns a value of type wctype_t, which represents the requested wide character class and may be used as the second argument for calls to iswctype(). The following character class names are recognised: alnum cntrl ideogram print space xdigit alpha digit lower punct special blank graph phonogram rune upper The iswctype() function checks whether the wide character wc is in the character class charclass. Although the iswctype() and wctype() functions use the current locale, the iswctype_l() and wctype_l() functions may be passed locales directly. See xlocale(3) for more information. RETURN VALUES
The iswctype() function returns non-zero if and only if wc has the property described by charclass, or charclass is zero. The wctype() function returns 0 if property is invalid; otherwise, it returns a value of type wctype_t that can be used in subsequent calls to iswctype(). EXAMPLES
Reimplement iswalpha(3) in terms of iswctype() and wctype(): int myiswalpha(wint_t wc) { return (iswctype(wc, wctype("alpha"))); } SEE ALSO
ctype(3), nextwctype(3), xlocale(3) STANDARDS
The iswctype() and wctype() functions conform to IEEE Std 1003.1-2001 (``POSIX.1''). The ``ideogram'', ``phonogram'', ``special'', and ``rune'' character classes are extensions. HISTORY
The iswctype() and wctype() functions first appeared in FreeBSD 5.0. BSD
March 27, 2004 BSD
Man Page

6 More Discussions You Might Find Interesting

1. Programming

vswprintf missing in HP-UX

I am writing software that should be running on HP-UX versions 11.00 and 11i. There will be one set of binaries and I need to use the vswprintf() function. Unfortunately, it is not available on HP-UX 11.00. Neither are available other wprintf() family functions. Is there any workaround for this... (1 Reply)
Discussion started by: maestro@altiris
1 Replies

2. UNIX for Dummies Questions & Answers

Locating C source code

Hi, I'm trying to locate where on the filesystem I can find the source code for C standard libraries. The reason why is I'd like to look at the implementation of "'atoi"'. I've tried a brutal search of "grep -r "atoi" *" from root as root but the search took too long. I'm running redhat 7.3... (3 Replies)
Discussion started by: chadwick0
3 Replies

3. AIX

VIM compilation

Hi, I tried to compile vim on AIX OS. I tried all version from 6.4 to 7.2 and the effect is the same. ./configuration --prefix=/home/me OK make The make try to compile first file buffer.c ane it gived me message like this gcc -c -I. -Iproto -DHAVE_CONFIG_H -DFEAT_GUI_ATHENA ... (2 Replies)
Discussion started by: marcintom.aviva
2 Replies

4. Solaris

fatal error: stdio.h: No such file or directory

Trying to compile a C program recievin this hello.c:1:19: fatal error: stdio.h: No such file or directory gcc is installed on the system. echo $PATH /usr/bin:/usr/sbin:/usr/gcc/4.5/include/c++/4.5.2/tr1 root@Sol11swtb01:/media/NO NAME/Programming/C/Testing# cd... (2 Replies)
Discussion started by: Fingerz
2 Replies

5. Shell Programming and Scripting

Filtering out Non-Lingual characters

In one of our project requirements , we will be SCANNING ALL RECORDS OF AN INPUT TEXT FILE AND WILL BE FILTERING OUT RECORDS WHICH CONTAINS NON-LINGUAL CHARACTERS What's meant by this requirement is that we will be retaining records that contains alphabets used in any language , like English... (1 Reply)
Discussion started by: kumarjt
1 Replies

6. UNIX for Beginners Questions & Answers

Using sed to split hex string

Hi, I'm looking to split the following hex string into rows of four elements. I've tried the following but it doesn't seem to work. How can I tell sed to match based on a pair of number(s) and letter(s), and add a newline every 4 pairs? In addition, I need to add another newline after every... (5 Replies)
Discussion started by: sand1234
5 Replies