_TOLOWER(3) Library Functions Manual _TOLOWER(3)
NAME
_tolower —
transliterate uppercase characters to lowercase
SYNOPSIS
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.
EXAMPLES
None.
APPLICATION USAGE
None.
RATIONALE
None.
FUTURE DIRECTIONS
None.
SEE ALSO
tolower(3), isupper(3), the Base Definitions volume of IEEE Std 1003.1-2001 (“POSIX.1”), xbd_chap07(7), <ctype.h>
CHANGE HISTORY
First released in Issue 1. Derived from Issue 1 of the SVID.
Issue 6
The DESCRIPTION is updated to avoid use of the term "must" for application requirements.
End of informative text. footer end
January 1, 2004 posix.fail