Go to the source code of this file.
|
#define | __P(x) x |
|
#define | UT_LINESIZE 8 |
|
#define | UT_HOSTSIZE 16 |
|
#define | MIN(a, b) ((a) <= (b) ? (a) : (b)) |
|
#define | MAX(a, b) ((a) > (b) ? (a) : (b)) |
|
#define | bcopy(s1, s2, n) memmove(s2, s1, n) |
|
#define | bcmp(s1, s2, n) (memcmp(s1, s2, n) != 0) |
|
#define | bzero(s, n) memset(s, 0, n) |
|
#define | index(s, c) strchr(s, c) |
|
#define | rindex(s, c) strrchr(s, c) |
|
◆ __P
◆ bcmp
◆ bcopy
◆ bzero
◆ index
◆ MAX
◆ MIN
◆ rindex
◆ UT_HOSTSIZE
◆ UT_LINESIZE
◆ f4byte_t
◆ f8byte_t
◆ u_char
◆ u_int
◆ uid_t