	[$Id: strxtens.txt,v 1.3 2000/08/06 20:09:35 amai Exp $]

NAME  strcasecmp, memcasecmp, strncasecmp - bsd-style non-standard string extensions

SYNOPSIS

        #include <sys/string.h>

        /* Compare S and T, ignoring case.  */
        int strcasecmp(const char *s, const char*t); 

       /* Compare no more than N chars of S and T, ignoring case.  */
       int memcasecmp(const void *s, const void *t, size_t n);
       int strncasecmp(const char *s, const char *t, size_t n);


       /* bsd style functions   (mostly deprecated by ANSI C90)
            all new systems declare them in <string.h>, though (?!)
            */
       int  bcmp (const void *a, const void *b, size_t n);
       void bcopy (const void *a, void *b, size_t n);
       void bzero (void *a, size_t n);
       int ffs (int i);		/* no ANSI equivalent yet, not deprecated */
       char *index (const char *s,  int i);
       char *rindex (const char *s,  int i);
