ref: aa520824e29c7906a78af72246ebe1aaa1807131
dir: /sys/src/libString/s_tolower.c/
#include <u.h>
#include <libc.h>
#include "String.h"
/* convert String to lower case */
void
s_tolower(String *sp)
{
char *cp;
for(cp=sp->ptr; *cp; cp++)
*cp = tolower(*cp);
}