
#include <stdio.h>
#include <ctype.h>


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