7 /* map uppercase characters to lowercase
9 /* #include <stringops.h>
11 /* char *lowercase(buf)
14 /* lowercase() replaces uppercase characters in its null-terminated
15 /* input by their lowercase equivalent.
19 /* The Secure Mailer license must be distributed with this software.
22 /* IBM T.J. Watson Research
24 /* Yorktown Heights, NY 10598, USA
32 /* Utility library. */
34 #include "stringops.h"
36 char *lowercase(char *string
)
41 for (cp
= string
; (ch
= *cp
) != 0; cp
++)