_tolower(3) - Linux man page
Name
_tolower - transliterate uppercase characters to lowercaseSynopsis
#include <ctype.h>
int _tolower(int c);
Description
The _tolower() macro shall be equivalent to tolower(c) except that the application shall ensure that the argument c is an uppercase letter.
Return Value
Upon successful completion, _tolower() shall return the lowercase letter corresponding to the argument passed.
Errors
No errors are defined.
The following sections are informative.
Examples
None.
Application Usage
None.
Rationale
None.
Future Directions
None.
See Also
tolower() , isupper() , the Base Definitions volume of IEEE Std 1003.1-2001, Chapter 7, Locale, <ctype.h>
