Go to the documentation of this file.
13 #define bcopy(src,dst,len) memmove(dst,src,len)
14 #define bzero(ptr, len) memset(ptr, 0, len)
15 #define bcmp(b1,b2,len) memcmp(b1,b2,len)
16 #define index(s, c) strchr(s, c)
17 #define rindex(s, c) strrchr(s, c)
20 char *
index(
const char *s,
int c);
21 char *
rindex(
const char *s,
int c);
29 unsigned int popcount(
unsigned int value);
30 unsigned int popcountl(
unsigned long value);
31 unsigned int popcountll(
unsigned long long value);
34 int strcasecmp(
const char *s1,
const char *s2);
35 int strncasecmp(
const char *s1,
const char *s2,
size_t len);