X-Git-Url: https://git.armaanb.net/?p=libacheam.git;a=blobdiff_plain;f=man%2Ftoupperw.3.scd;h=eed712b48f8ab7307a69d18ae4b64a8bc5fd51b8;hp=885627eb36600423ab5bf8ff362e41c5301cf8f5;hb=b3b07523ff09976b73d46776550b0f94ce367318;hpb=29e65353526c081cbdcdf3db88fbdf1a06366b63 diff --git a/man/toupperw.3.scd b/man/toupperw.3.scd index 885627e..eed712b 100644 --- a/man/toupperw.3.scd +++ b/man/toupperw.3.scd @@ -7,8 +7,8 @@ toupperw, tolowerw - convert strings to uppercase or lowercase ``` #include -char * toupperw(char *); -char * tolowerw(char *); +char * toupperw(char *input); +char * tolowerw(char *input); ``` # DESCRIPTION @@ -16,10 +16,8 @@ Like ctype.h's toupper() and tolower(), except that it can take full strings instead of just single characters. # RETURN VALUE -A pointer to the converted string. +A pointer to the converted string. This string is allocated with calloc(3), so +be sure to free(3) it! # SEE ALSO toupper(3), tolower(3) - -# COLOPHON -This page is a part of libacheam(3).