]> git.armaanb.net Git - libacheam.git/blob - man/toupperw.3.scd
55fd5a87b984ac1a4beebdd0e86f080026e8b621
[libacheam.git] / man / toupperw.3.scd
1 toupperw(3)
2
3 # NAME
4 toupperw, tolowerw - convert strings to uppercase or lowercase
5
6 # SYNOPSIS
7 ```
8 #include <acheam.h>
9
10 char * toupperw(char *);
11 char * tolowerw(char *);
12 ```
13
14 # DESCRIPTION
15 Like ctype.h's toupper() and tolower(), except that it can take full strings
16 instead of just single characters.
17
18 # RETURN VALUE
19 A pointer to the converted string. This string is allocated with calloc(3), so
20 be sure to free(3) it!
21
22 # SEE ALSO
23 toupper(3), tolower(3)