Retro video games delivered to your door every month!
Click above to get retro games delivered to your door ever month!
X-Hacker.org- Microsoft C 6.0 - <b>_fstricmp() compare two strings (model, case independent)</b> http://www.X-Hacker.org [<<Previous Entry] [^^Up^^] [Next Entry>>] [Menu] [About The Guide]
 _fstricmp()             Compare Two Strings (Model, Case Independent)

 #include   <string.h>

 int _fstricmp(string1, string2);
 char _far *string1;            First String
 char _far *string2;            Second String

    This is the model independent version of stricmp(); it compares
    two strings without regard to case. See stricmp() for more
    information.

    Returns:    * A negative value if string1 < string2.
                * 0 if string1 = string2.
                * A positive value if string1 > string2.

 Portability:   Not supported by the ANSI standard.


See Also: strcmp() strcmpi() stricmp() strncmp() strncpy()

Online resources provided by: http://www.X-Hacker.org --- NG 2 HTML conversion by Dave Pearson