                         libcasefix Programmer's Reference Guide

		FUNCTION: lowerall
		
		DEPENDS ON: the c standard lib

		SOURCE FILE: libcasefix.c

		LIBRARY FILES: libcasefix.so (shared library), libcasefix.a (static archive), or libcasefix.o (object file)
 
		HEADER FILE: libcasefix.h

		PROTOTYPE:

			int lowerall(FILE * inputstream, FILE * outputstream)
			
		APROPOS USES: regular words which do not begin sentences nor are proper nouns, nor the pronoun "I", in preparation of running another casefix function / routine over same set of words

		DESCRIPTION:
	
			lowerall causes every alphabetic character received on the incoming stream, which is pointed to by FILE * inputstream, to be in the lower case and outputs every character in the order received to a stream pointed at by FILE * outputstream; only the case of upper case alphabetic characters being changed to the lower case.

		RETURN VALUES: 0 = no errors encountered; all other values are error codes.
		
		OTHER NOTES:
