The Single UNIX ® Specification, Version 2
Copyright © 1997 The Open Group

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(), bcopy(), bzero(), ffs(), index(), rindex(), strcasecmp().

UNIX ® is a registered Trademark of The Open Group.
Copyright © 1997 The Open Group
[ Main Index | XSH | XCU | XBD | XCURSES | XNS ]