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 ispunct( int c );
    #include <wchar.h>
    int iswpunct( wint_t c );

Description:
    The ispunct function tests for any punctuation character such as a comma
    (,) or a period (.).

    The iswpunct function is similar to ispunct except that it accepts a
    wide-character argument.

Returns:
    The ispunct function returns a non-zero value when the argument is a
    punctuation character.  The iswpunct function returns a non-zero value
    when the argument is a printable wide character that is neither the
    space wide character nor a wide character for which  iswalnum is true.
     Otherwise, zero is returned.

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

    char chars[] = {
        'A',
        '!',
        '.',
        ',',
        ':',
        ';'
    };

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

    void main()
      {
        int   i;

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

    produces the following:

    Char A is not a punctuation character
    Char ! is a punctuation character
    Char . is a punctuation character
    Char , is a punctuation character
    Char : is a punctuation character
    Char ; is a punctuation character

Classification:
    ispunct is ANSI, iswpunct is ANSI

Systems:
     ispunct - All, Netware

    iswpunct - All, Netware

See Also:
    isalnum, isalpha, iscntrl, isdigit, isgraph, isleadbyte, islower,
    isprint, 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