Rizin
unix-like reverse engineering framework and cli tools
|
Go to the source code of this file.
Macros | |
#define | IS_NULLSTR(x) (!(x) || !*(x)) |
#define | IS_WHITECHAR(x) ((x) == ' ' || (x) == '\t' || (x) == '\n' || (x) == '\r') |
#define | IS_SEPARATOR(x) |
#define | IS_HEXCHAR(x) (((x) >= '0' && (x) <= '9') || ((x) >= 'a' && (x) <= 'f') || ((x) >= 'A' && (x) <= 'F')) |
#define | IS_PRINTABLE(x) ((x) >= ' ' && (x) <= '~') |
#define | IS_DIGIT(x) ((x) >= '0' && (x) <= '9') |
#define | IS_OCTAL(x) ((x) >= '0' && (x) <= '7') |
#define | IS_WHITESPACE(x) ((x) == ' ' || (x) == '\t') |
#define | IS_UPPER(c) ((c) >= 'A' && (c) <= 'Z') |
#define | IS_LOWER(c) ((c) >= 'a' && (c) <= 'z') |
Definition at line 11 of file rz_str_util.h.
#define IS_HEXCHAR | ( | x | ) | (((x) >= '0' && (x) <= '9') || ((x) >= 'a' && (x) <= 'f') || ((x) >= 'A' && (x) <= 'F')) |
Definition at line 9 of file rz_str_util.h.
Definition at line 4 of file rz_str_util.h.
Definition at line 12 of file rz_str_util.h.
Definition at line 10 of file rz_str_util.h.
#define IS_SEPARATOR | ( | x | ) |
Definition at line 5 of file rz_str_util.h.
Definition at line 13 of file rz_str_util.h.