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

Description:
    The isupper function tests for any uppercase letter 'A' through 'Z'.

    The iswupper function is similar to isupper except that it accepts a
    wide-character argument.

Returns:
    The isupper function returns a non-zero value when the argument is an
    uppercase letter.  The iswupper function returns a non-zero value when
    the argument is a wide character that corresponds to a lowercase letter,
    or if it is one of an implementation-defined set of wide characters for
    which none of  iswcntrl,  iswdigit,  iswpunct, or  iswspace is true.
     Otherwise, zero is returned.

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

    char chars[] = {
        'A',
        'a',
        'z',
        'Z'
    };

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

    void main()
      {
        int   i;

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

    produces the following:

    Char A is an uppercase character
    Char a is not an uppercase character
    Char z is not an uppercase character
    Char Z is an uppercase character

Classification:
    isupper is ANSI, iswupper is ANSI

Systems:
     isupper - All, Netware

    iswupper - All, Netware

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

See Also: isleadbyte iswctype

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