int stricmp( const char *str1, const char *str2 )


	- prototype in string.h

	- compares str1 to str2 without case sensitivity

	- returns < 0 if str1 < str2
		  = 0 if str1 = str2
		  > 0 if str1 > str2

	  using a signed comparison