strings.h comes from the BSD branch in unix evolution. Its content was standardized by POSIX, but most of it is marked as a legacy and can be easily replaced with other functions:
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);
AProgrammer Nov 27 2018-10-11T00: 00-11
source share