STRINGS.H(7) Miscellaneous Information Manual STRINGS.H(7)
NAME
strings — string
operations
SYNOPSIS
#include <strings.h>
DESCRIPTION
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 size_t type is defined through typedef as described in <stddef.h>.
APPLICATION USAGE
None.
FUTURE DIRECTIONS
None.
SEE ALSO
bcmp(3) , bcopy(3) , bzero(3) , ffs(3) , index(3) , rindex(3) , strcasecmp(3) .
February 1997 posix.fail