shithub: riscv

ref: 73862cb9cf6058273c3ce9c025bde55433306265
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);
}