#include char *strlwr(char *str) { char *ret = str; while(*str) { *str = tolower(*str); ++str; } return ret; }