ustrlwr
Replaces all letters with lower case. Allegro game programming library.
- Provided by: allegro4-doc (Version: 2:4.4.3.1-4.1build3)
- Source: allegro4.4
- Report a bug
Replaces all letters with lower case. Allegro game programming library.
#include <allegro.h>
char *ustrlwr(char *s);
This function replaces all upper case letters in `s' with lower case letters. Example:
char buffer[] = "UPPER CASE STRING"; allegro_message(ustrlwr(buffer));
The return value is the value of `s'.
uconvert(3alleg4), utolower(3alleg4), ustrupr(3alleg4)