STRINGS.H(7) Miscellaneous Information Manual STRINGS.H(7)

stringsstring operations

#include <strings.h>

The following are declared as functions and may also be defined as macros. Function prototypes must be provided for use with an ISO C compiler.

int    bcmp(const void *, const void *, size_t);
void   bcopy(const void *, void *, size_t);
void   bzero(void *, size_t);
int    ffs(int);
char   *index(const char *, int);
char   *rindex(const char *, int);
int    strcasecmp(const char *, const char *);
int    strncasecmp(const char *, const char *, size_t);

The type is defined through as described in <stddef.h>.

None.

None.

bcmp(3) , bcopy(3) , bzero(3) , ffs(3) , index(3) , rindex(3) , strcasecmp(3) .

February 1997 posix.fail