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