Converting a string to lowercase [[lowercase(s)]] converts the string [[s]] to lowercase. <<*>>= #include #include "equal.e" EXPORT void lowercase(char *s) { if (s != NULL) for (; *s; s++) *s = downcase[*s]; }