mirror of
https://github.com/9fans/plan9port.git
synced 2025-01-15 11:20:03 +00:00
16 lines
205 B
C
16 lines
205 B
C
|
#include <u.h>
|
||
|
#include <libc.h>
|
||
|
#include <ctype.h>
|
||
|
#include "libString.h"
|
||
|
|
||
|
|
||
|
/* convert String to lower case */
|
||
|
void
|
||
|
s_tolower(String *sp)
|
||
|
{
|
||
|
char *cp;
|
||
|
|
||
|
for(cp=sp->ptr; *cp; cp++)
|
||
|
*cp = tolower(*cp);
|
||
|
}
|