|
NAMEustrlwr - Replaces all letters with lower case. Allegro game programming library.SYNOPSIS#include <allegro.h>char *ustrlwr(char *s); DESCRIPTIONThis function replaces all upper case letters in `s' with lower case letters. Example:char buffer[] = "UPPER CASE STRING"; allegro_message(ustrlwr(buffer)); RETURN VALUEThe return value is the value of `s'.SEE ALSOuconvert(3), utolower(3), ustrupr(3)
Visit the GSP FreeBSD Man Page Interface. |