Readme for breaker.dll

This dll was designed to work with mIRC

it exports 4 funktions:

-breaktab
	This function replaces all tabs in a file with carriage returns.
	It might be usefull if you want to read a tabbed text with mIRC but it has too long lines
	as mIRC only allows about 900characters for it's variables
	Usage:
	/dll breaker.dll breaktab filename.ext
	The output will be written into the same file

-breakhtml
	This function inserts a carriage return between "><". 
	Use it if you want to parse html files with mIRC but it was written into one single
	line that is longer than 900characters.
	Usage:
	/dll breaker.dll breakhtml filename.ext
	The output will be written into the same file

-delcolumn
	This function deletes a given column from a tab delimited chart.
	Again this function was designed to help mIRC to handle large files as
	you can delete the columns you don't need.
	Usage:
	/dll breaker.dll delcolumn 1 filename.ext 
		Deletes the first column in a tab-delimited textfile
	/dll breaker.dll delcolumn 3-8 filename.ext
		Deletes the columns 3 to 8 in a tab-delimited chart
	/dll breaker.dll delcolumn 10- filename.ext
		Deletes all columns from 10 until end of line.

-version
	This EXTREMELY important and versatile function returns information
	about the dll and the authors.
	
