NAME
toupper, tolower, toupper_l, tolower_l - convert uppercase or lowercase
SYNOPSIS
#include <ctype.h> int toupper(int c); int tolower(int c); int toupper_l(int c, locale_t locale); int tolower_l(int c, locale_t locale); Feature Test Macro Requirements for glibc (see feature_test_macros(7)): toupper_l(), tolower_l(): Since glibc 2.10: _XOPEN_SOURCE >= 700 Before glibc 2.10: _GNU_SOURCE
DESCRIPTION
These functions convert lowercase letters to uppercase, and vice versa. If c is a lowercase letter, toupper() returns its uppercase equivalent, if an uppercase representation exists in the current locale. Otherwise, it returns c. The toupper_l() function performs the same task, but uses the locale referred to by the locale handle locale. If c is an uppercase letter, tolower() returns its lowercase equivalent, if a lowercase representation exists in the current locale. Otherwise, it returns c. The tolower_l() function performs the same task, but uses the locale referred to by the locale handle locale. If c is neither an unsigned char value nor EOF, the behavior of these functions is undefined. The behavior of toupper_l() and tolower_l() is undefined if locale is the special locale object LC_GLOBAL_LOCALE (see duplocale(3)) or is not a valid locale object handle.
RETURN VALUE
The value returned is that of the converted letter, or c if the conversion was not possible.
ATTRIBUTES
For an explanation of the terms used in this section, see attributes(7). Interface Attribute Value toupper(), tolower(), Thread safety MT-Safe toupper_l(), tolower_l()
CONFORMING TO
toupper(), tolower(): C89, C99, 4.3BSD, POSIX.1-2001, POSIX.1-2008. toupper_l(), tolower_l(): POSIX.1-2008.
NOTES
The standards require that the argument c for these functions is either EOF or a value that is representable in the type unsigned char. If the argument c is of type char, it must be cast to unsigned char, as in the following example: char c; ... res = toupper((unsigned char) c); This is necessary because char may be the equivalent signed char, in which case a byte where the top bit is set would be sign extended when converting to int, yielding a value that is outside the range of unsigned char. The details of what constitutes an uppercase or lowercase letter depend on the locale. For example, the default "C" locale does not know about umlauts, so no conversion is done for them. In some non-English locales, there are lowercase letters with no corresponding uppercase equivalent; the German sharp s is one example.
SEE ALSO
isalpha(3), newlocale(3), setlocale(3), towlower(3), towupper(3), uselocale(3), locale(7)
COLOPHON
This page is part of release 4.09 of the Linux man-pages project. A description of the project, information about reporting bugs, and the latest version of this page, can be found at https://www.kernel.org/doc/man-pages/.
More Linux Commands
manpages/pamsharpmap.1.html
pamsharpmap(1) - create map of sharpness in a PNM/PAM image
This program is part of Netpbm(1) pamsharpmap reads a Netpbm image (PNM or PAM) and produces an image that shows how sharp it is at each location. Sharpness is
manpages/XpSetLocaleHinter.3x.html
XpSetLocaleHinter(3x) - Sets a "locale hinter" function and
Since (to date) there is no single industry standard for locale values, locale information about the current client required by XpCreateContext, XpGetPrinterLis
manpages/field_info.3form.html
field_info(3form) - retrieve field characteristics (ManPage)
The function field_info returns the sizes and other attributes passed in to the field at its creation time. The attributes are: height, width, row of upper-left
manpages/getunimap.8.html
getunimap(8) - dump the unicode map for the current console
The getunimap program is old and obsolete. It is now part of setfont 411toppm(1). The getunimap program outputs the unicode map (also called a Screen Font Map)
manpages/reset_prog_mode_sp.3ncurses.html
reset_prog_mode_sp(3ncurses) - curses screen-pointer extensi
This implementation can be configured to provide a set of functions which improve the ability to manage multiple screens. This feature can be added to any of th
manpages/SDL_SetEventFilter.3.html
SDL_SetEventFilter(3) - Sets up a filter to process all even
This function sets up a filter to process all events before they are posted to the event queue. This is a very powerful and flexible feature. The filter is prot
manpages/Tcl_SetRecursionLimit.3.html
Tcl_SetRecursionLimit(3) - set maximum allowable nesting dep
At any given time Tcl enforces a limit on the number of recursive calls that may be active for Tcl_Eval and related procedures such as Tcl_GlobalEval. Any call
manpages/turbostat.8.html
turbostat(8) Report processor frequency and idle statistics
turbostat reports processor topology, frequency, idle power-state statistics, temperature and power on modern X86 processors. Either command is forked and stati
manpages/popen.3.html
popen(3) - pipe stream to or from a process - Linux man page
The popen() function opens a process by creating a pipe, forking, and invoking the shell. Since a pipe is by definition unidirectional, the type argument may sp
manpages/Mail::SpamAssassin::BayesStore::SQL.3pm.html
Mail::SpamAssassin::BayesStore::SQL(3pm) - SQL Bayesian Stor
This module implementes a SQL based bayesian storage module. METHODS new public class (Mail::SpamAssassin::BayesStore::SQL) new (Mail::Spamassassin::Plugin::Bay
manpages/snmp_sess_session.3.html
snmp_sess_session(3) - session functions - Linux man page...
These functions define a subset of the API that can be used to manage single SNMP sessions in a multi-threaded application. Except for snmp_sess_session(), thes
manpages/ttrace.n.html
ttrace(n) Trace-based interpreter initialization (Man Page)
This package creates a framework for on-demand replication of the interpreter state accross threads in an multithreading application. It relies on the mechanics
