mud++0.35/etc/
mud++0.35/etc/guilds/
mud++0.35/help/propert/
mud++0.35/mudC/
mud++0.35/player/
mud++0.35/src/interface/
mud++0.35/src/os/cygwin32/
mud++0.35/src/os/win32/
mud++0.35/src/os/win32/bcppbuilder/
mud++0.35/src/osaddon/
mud++0.35/src/util/
#!/usr/local/bin/perl
# Do global case lowering for John Olson's patches ;)
# Should get everything, if not add to it.
#
# Ex:  fixpatch < patch.orig > patch.fixed
#
# -Fusion

while( $line = <STDIN> ) {
	while( $line =~
			/[_0-9A-Z]+(\.CC|\.H|\.ARE)|\/ETC|\/SRC|\/AREA|\/HELP|\/DOC/g )
	{
		$pos = index( $line, $& );
		$lower = lc( $& );
		substr( $line, $pos ) = $lower;
	}
	print( $line );
}