C Quirk??

Tim Smith, Knowledgian tim at ism780c.UUCP
Sat Feb 20 07:41:36 AEST 1988


Another thing that might be a good idea is to change

	if ( isupper(ch) )
		tolower(ch);

to something like

	if ( isupper(ch) )
		ch = tolower(ch);
-- 
Tim Smith					tim at ism780c.isc.com
"What's my sex, what's my name, all in all it's all the same,
 everybody plays a different game - that is all" -- Cat Stevens



More information about the Comp.lang.c mailing list