Skip to content

Latest commit

 

History

History
78 lines (59 loc) · 3.14 KB

isupper-isupper-l-iswupper-iswupper-l.md

File metadata and controls

78 lines (59 loc) · 3.14 KB
description title ms.date api_name api_location api_type topic_type f1_keywords helpviewer_keywords ms.assetid
Learn more about: isupper, _isupper_l, iswupper, _iswupper_l
isupper, _isupper_l, iswupper, _iswupper_l
4/2/2020
isupper
iswupper
_iswupper_l
_isupper_l
_o_isupper
_o_iswupper
msvcrt.dll
msvcr80.dll
msvcr90.dll
msvcr100.dll
msvcr100_clr0400.dll
msvcr110.dll
msvcr110_clr0400.dll
msvcr120.dll
msvcr120_clr0400.dll
ucrtbase.dll
api-ms-win-crt-string-l1-1-0.dll
ntoskrnl.exe
DLLExport
apiref
isupper
_istupper
iswupper
istupper function
iswupper function
isupper_l function
_isupper_l function
iswupper_l function
_istupper function
_iswupper_l function
isupper function
da2bcc9f-241c-48c0-9a0e-ad273827e16a

isupper, _isupper_l, iswupper, _iswupper_l

Determines whether an integer represents an uppercase character.

Syntax

int isupper(
   int c
);
int _isupper_l (
   int c,
   _locale_t locale
);
int iswupper(
   wint_t c
);
int _iwsupper_l(
   wint_t c,
   _locale_t locale
);

Parameters

c
Integer to test.

locale
Locale to use.

Return value

Each of these routines returns nonzero if c is a particular representation of an uppercase letter. isupper returns a nonzero value if c is an uppercase character (A - Z). iswupper returns a nonzero value if c is a wide character that corresponds to an uppercase letter, or if c is one of an implementation-defined set of wide characters for which none of iswcntrl, iswdigit, iswpunct, or iswspace is nonzero. Each of these routines returns 0 if c doesn't satisfy the test condition.

The versions of these functions that have the _l suffix use the locale that's passed in instead of the current locale for their locale-dependent behavior. For more information, see Locale.

The behavior of isupper and _isupper_l is undefined if c isn't EOF or in the range 0 through 0xFF, inclusive. When a debug CRT library is used and c isn't one of these values, the functions raise an assertion.

Generic-text routine mappings

TCHAR.H routine _UNICODE and _MBCS not defined _MBCS defined _UNICODE defined
_istupper isupper _ismbcupper iswupper
_istupper_l _isupper_l _ismbclower, _ismbclower_l, _ismbcupper, _ismbcupper_l _iswupper_l

Remarks

By default, this function's global state is scoped to the application. To change this behavior, see Global state in the CRT.

Requirements

Routine Required header
isupper <ctype.h>
_isupper_l <ctype.h>
iswupper <ctype.h> or <wchar.h>
_iswupper_l <ctype.h>

For more compatibility information, see Compatibility.

See also

Character classification
Locale
is, isw routines