This is an old revision of the document!
int tolower(int c)
Returns the lowercase version of c. If c is not an ASCII letter, it is returned unchanged.
tolower('A') -> 'a'
tolower('a') -> 'a'
tolower('/') -> '/' // not a letter
tolower('Ä') -> 'Ä' // non-ASCII character