Copyright (C) 2000-2012 |
Manpages ISALPHASection: Linux Programmer's Manual (3 )Updated: 1995-09-02 Index Return to Main Contents NAMEisalnum, isalpha, isascii, isblank, iscntrl, isdigit, isgraph, islower, isprint, ispunct, isspace, isupper, isxdigit - character classification routinesSYNOPSIS#include <ctype.h> int isalnum (int c); int isalpha (int c); int isascii (int c); int isblank (int c); int iscntrl (int c); int isdigit (int c); int isgraph (int c); int islower (int c); int isprint (int c); int ispunct (int c); int isspace (int c); int isupper (int c); int isxdigit (int c); DESCRIPTIONThese functions check whether c, which must have the value of an unsigned char or EOF, falls into a certain character class according to the current locale.
RETURN VALUEThe values returned are nonzero if the character c falls into the tested class, and a zero value if not.CONFORMING TOANSI - C, BSD 4.3. isascii() is a BSD extension and is also an SVID extension. isblank() is a GNU extension.NOTEThe details of what characters belong into which class depend on the current locale. For example, isupper() will not recognize an A - umlaut as an uppercase letter in the default C locale.SEE ALSOtolower(3), toupper(3), setlocale(3), ascii(7), locale(7)
IndexThis document was created by man2html, using the manual pages. Time: 12:44:05 GMT, December 14, 2024 |