Retro video games delivered to your door every month!
Click above to get retro games delivered to your door ever month!
X-Hacker.org- Watcom C/C++ v10.0 : C library - <b>synopsis:</b> http://www.X-Hacker.org [<<Previous Entry] [^^Up^^] [Next Entry>>] [Menu] [About The Guide]
Synopsis:
    #include <ctype.h>
    int isalpha( int c );

Description:
    The isalpha function tests if the argument c is an alphabetic character
    ('a' to 'z' and 'A' to 'Z').  An alphabetic character is any character
    for which  isupper or  islower is true.

Returns:
    The isalpha returns zero if the argument is not an alphabetic character
    otherwise, a non-zero value is returned.

See Also:
    isalnum, iscntrl, isdigit, isgraph, islower, isprint, ispunct, isspace,
    isupper, isxdigit, tolower, toupper

Example:
    #include <stdio.h>
    #include <ctype.h>

    void main()
      {
        if( isalpha( getchar() ) ) {
          printf( "is alphabetic\n" );
        }
      }

Classification:
    ANSI

Systems:
    All

Online resources provided by: http://www.X-Hacker.org --- NG 2 HTML conversion by Dave Pearson