1ustrlwr(3) Allegro manual ustrlwr(3)
2
3
4
6 ustrlwr - Replaces all letters with lower case. Allegro game programā
7 ming library.
8
10 #include <allegro.h>
11
12
13 char *ustrlwr(char *s);
14
16 This function replaces all upper case letters in `s' with lower case
17 letters. Example:
18
19 char buffer[] = "UPPER CASE STRING";
20 allegro_message(ustrlwr(buffer));
21
23 The return value is the value of `s'.
24
25
27 uconvert(3), utolower(3), ustrupr(3)
28
29
30
31Allegro version 4.4.3 ustrlwr(3)