shithub: riscv

ref: 3f52f47b9b698045b3948a9321264390b268b3d8
dir: /sys/src/libString/s_tolower.c/

View raw version
#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);
}