3 <<strupr>>---force string to uppercase
10 char *strupr(char *<[a]>);
13 <<strupr>> converts each character in the string at <[a]> to
17 <<strupr>> returns its argument, <[a]>.
20 <<strupr>> is not widely portable.
22 <<strupr>> requires no supporting OS subroutines.
34 unsigned char *ucs
= (unsigned char *) s
;
35 for ( ; *ucs
!= '\0'; ucs
++)