(C) 1998 AROS - The Amiga Research OS


NAME
#include <string.h>

int strcasecmp ()

SYNOPSIS
const char * str1
const char * str2

FUNCTION
Calculate str1 - str2 ignoring case.

INPUTS
str1, str2 - Strings to compare

RESULT
The difference of the strings. The difference is 0, if both are equal, < 0 if str1 < str2 and > 0 if str1 > str2. Note that it may be greater then 1 or less than -1.

EXAMPLE

SEE ALSO

NOTES
This function is not part of a library and may thus be called any time.

BUGS

INTERNALS

HISTORY
20.10.1998 hkiel
Amiga Research OS
11.12.1996 aros
Added/corrected headers
10.12.1996 aros
Moved #include into first column to allow makedepend to see it.
19.10.1996 aros
Moved all ANSI C function to here and wrote all neccessary header files. Now we have a real basis for our own C lib. Added the functions malloc(), free() and strcasecmp() Made all functions ANSI C compliant
29.08.1996 digulla
Added STRICMP() - Compare two strings ignoring case