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 Library Reference - <u>synopsis:</u> http://www.X-Hacker.org [<<Previous Entry] [^^Up^^] [Next Entry>>] [Menu] [About The Guide]
Synopsis:
    #include <ctype.h>
    int isdigit( int c );
    #include <wchar.h>
    int iswdigit( wint_t c );

Description:
    The isdigit function tests for any decimal-digit character '0' through
    '9'.

    The iswdigit function is similar to isdigit except that it accepts a
    wide-character argument.

Returns:
    The isdigit function returns a non-zero value when the argument is a
    decimal-digit character.  The iswdigit function returns a non-zero value
    when the argument is a wide character corresponding to a decimal-digit
    character.  Otherwise, zero is returned.

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

    char chars[] = {
        'A',
        '5',
        '$'
    };

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

    void main()
      {
        int   i;

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

    produces the following:

    Char A is not a digit character
    Char 5 is a digit character
    Char $ is not a digit character

Classification:
    isdigit is ANSI, iswdigit is ANSI

Systems:
     isdigit - All, Netware

    iswdigit - All, Netware

See Also:
    isalnum, isalpha, iscntrl, isgraph, isleadbyte, islower, isprint,
    ispunct, isspace, isupper, iswctype, isxdigit, tolower, toupper

See Also: isleadbyte iswctype

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