3 <<toupper>>, <<toupper_l>>---translate characters to uppercase
16 int toupper(int <[c]>);
17 int _toupper(int <[c]>);
20 int toupper_l(int <[c]>, locale_t <[locale]>);
24 <<toupper>> is a macro which converts lowercase characters to uppercase,
25 leaving all other characters unchanged. It is only defined when
26 <[c]> is an integer in the range <<EOF>> to <<255>>.
28 <<toupper_l>> is like <<toupper>> but performs the function based on the
29 locale specified by the locale object locale. If <[locale]> is
30 LC_GLOBAL_LOCALE or not a valid locale object, the behaviour is undefined.
32 You can use a compiled subroutine instead of the macro definition by
33 undefining this macro using `<<#undef toupper>>' or `<<#undef toupper_l>>'.
35 <<_toupper>> performs the same conversion as <<toupper>>, but should
36 only be used when <[c]> is known to be a lowercase character (<<a>>--<<z>>).
39 <<toupper>>, <<toupper_l>> return the uppercase equivalent of <[c]> when
40 <[c]> is a lowercase character, and <[c]> otherwise.
42 <<_toupper>> returns the uppercase equivalent of <[c]> when it is a
43 character between <<a>> and <<z>>. If <[c]> is not one of these
44 characters, the behaviour of <<_toupper>> is undefined.
47 <<toupper>> is ANSI C. <<_toupper>> is not recommended for portable programs.
48 <<toupper_l>> is POSIX-1.2008.
50 No supporting OS subroutines are required.
55 #if defined (_MB_EXTENDED_CHARSETS_ISO) || defined (_MB_EXTENDED_CHARSETS_WINDOWS)
67 #if defined (_MB_EXTENDED_CHARSETS_ISO) || defined (_MB_EXTENDED_CHARSETS_WINDOWS)
68 if ((unsigned char) c
<= 0x7f)
69 return islower (c
) ? c
- 'a' + 'A' : c
;
70 else if (c
!= EOF
&& MB_CUR_MAX
== 1 && islower (c
))
72 char s
[MB_LEN_MAX
] = { c
, '\0' };
74 if (mbtowc (&wc
, s
, 1) >= 0
75 && wctomb (s
, (wchar_t) towupper ((wint_t) wc
)) == 1)
76 c
= (unsigned char) s
[0];
80 return islower (c
) ? c
- 'a' + 'A' : c
;