#include #include int mklower ( c ) int c; { if ( isupper ( c ) ) return ( tolower ( c ) ); return ( c ); }