LOGRTHM.H - Documentation

1. Legal stuff
	I, the author, cannot be responsible to any damage to data or 
	equipment resulting from the use or       
	misuse of this program.

	This program may be freely distributed provided that no modifications 
	are made, no fees charged, and this documentation file accompanies.

	I, the author, retain all rights to this file.

2. What you've been waiting for ... the documentation

   The logrthm.h file is an extension to the math.h header file.  Where most 
company's math libraries define a logarithm to the base e function and, 
maybe, a logarithm base 10, none that I have seen allow for other bases.  
This file defines the function "logrthm" that returns the Log base B of N.  
B and N may be any combination of types int, float, double, long double, or 
complex.

Function format : logrthm(B, N)
Returns : Log base B of N, using the precision of the highest precision
	  parameter (i.e. if an int and a double are passed, the function
	  will return a double).  When complex numbers are used, the
	  function will return a complex.

NOTE : when using complex numbers, include the complex.h header before
       logrthm.h

NOTE : this header requires a C++ compiler.

That's it.  Short documentation for a short file.




