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 iscntrl( int c );

Description:
    The iscntrl function tests for any control character.  A control
    character is any character whose value is from 0 through 31.

Returns:
    The iscntrl returns a non-zero value when the argument is a control
    character; otherwise, zero is returned.

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

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

    char chars[] = {
        'A',
        0x09,
        'Z'
    };

    #define SIZE sizeof( chars ) / sizeof( char )

    void main()
      {
        int   i;

        for( i = 0; i < SIZE; i++ ) {
          printf( "Char %c is %sa Control character\n",
                chars[i],
                ( iscntrl( chars[i] ) ) ? "" : "not " );
        }
      }

    produces the following:

    Char A is not a Control character
    Char     is a Control character
    Char Z is not a Control character

Classification:
    ANSI

Systems:
    All

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