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