API Documentation
-----------------
I know this looks rather sparce, but only two functions are needed:


string scan_clam_buffer(string $var);
	return value will be FALSE if no virus present, or the virus name 
	if it was an infected file.

string scan_clam_file(string $file);
        return value will be FALSE if no virus present, or the virus name
        if it was an infected file.

NOTE*
	All functions return FALSE if they find no viruses, or encounter 
any form of problem, such as the database directory not being present. This
means only TRUE results represent a virus, and as such, a definate and
immediate threat.

string clam_get_version(void);
	returns the version of libclamav php-clam was compiled against



INI Options
-----------

clam.max_files = int
	maximum number of files to scan within a compressed archive 

clam.memory_limit = boolean
	enable or disable rar memory limit function

clam.recursion_level = int
	maximum recursion level to descend within a compressed archive

clam.virus_dbdir = string
	not working yet
	defines the location of the virus databases

