From 754bbf7a25a8dda49b5d08ef0d0443bbf5af0e36 Mon Sep 17 00:00:00 2001 From: Craig Jennings Date: Sun, 7 Apr 2024 13:41:34 -0500 Subject: new repository --- devdocs/c/string%2Fbyte%2Ftoupper.html | 49 ++++++++++++++++++++++++++++++++++ 1 file changed, 49 insertions(+) create mode 100644 devdocs/c/string%2Fbyte%2Ftoupper.html (limited to 'devdocs/c/string%2Fbyte%2Ftoupper.html') diff --git a/devdocs/c/string%2Fbyte%2Ftoupper.html b/devdocs/c/string%2Fbyte%2Ftoupper.html new file mode 100644 index 00000000..6e38516f --- /dev/null +++ b/devdocs/c/string%2Fbyte%2Ftoupper.html @@ -0,0 +1,49 @@ +

toupper

Defined in header <ctype.h>
int toupper( int ch );
+

Converts the given character to uppercase according to the character conversion rules defined by the currently installed C locale.

+

In the default "C" locale, the following lowercase letters abcdefghijklmnopqrstuvwxyz are replaced with respective uppercase letters ABCDEFGHIJKLMNOPQRSTUVWXYZ.

+

Parameters

+ +
ch - character to be converted. If the value of ch is not representable as unsigned char and does not equal EOF, the behavior is undefined.

Return value

Uppercase version of ch or unmodified ch if no uppercase version is listed in the current C locale.

+

Example

#include <stdio.h>
+#include <ctype.h>
+#include <locale.h>
+#include <limits.h>
+ 
+int main(void)
+{
+    /* In the default locale: */
+    for (unsigned char l = 0; l < UCHAR_MAX; l++) {
+        unsigned char u = toupper(l);
+        if (u != l) printf("%c%c ", l, u);
+    }
+    printf("\n\n");
+ 
+    unsigned char c = '\xb8'; // the character Ž in ISO-8859-15
+                              // but ´ (acute accent) in ISO-8859-1 
+    setlocale(LC_ALL, "en_US.iso88591");
+    printf("in iso8859-1, toupper('0x%x') gives 0x%x\n", c, toupper(c));
+    setlocale(LC_ALL, "en_US.iso885915");
+    printf("in iso8859-15, toupper('0x%x') gives 0x%x\n", c, toupper(c));
+}

Possible output:

+
aA bB cC dD eE fF gG hH iI jJ kK lL mM nN oO pP qQ rR sS tT uU vV wW xX yY zZ 
+ 
+in iso8859-1, toupper('0xb8') gives 0xb8
+in iso8859-15, toupper('0xb8') gives 0xb4

References

See also

+ + +
converts a character to lowercase
(function)
+
(C95)
converts a wide character to uppercase
(function)
C++ documentation for toupper
+

+ © cppreference.com
Licensed under the Creative Commons Attribution-ShareAlike Unported License v3.0.
+ https://en.cppreference.com/w/c/string/byte/toupper +

+
-- cgit v1.2.3