We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f6d19cc commit 76284bbCopy full SHA for 76284bb
src/defs.h
@@ -15,11 +15,12 @@
15
/* Common macro functions */
16
#define is_whitespace(c) (c == ' ' || c == '\t')
17
#define is_newline(c) (c == '\r' || c == '\n')
18
-#define is_alnum(c) ((c >= 'a' && c <= 'z') || (c >= 'A' && c <= 'Z') || \
19
- (c >= '0' && c <= '9') || (c == '_'))
+#define is_alnum(c) \
+ ((c >= 'a' && c <= 'z') || (c >= 'A' && c <= 'Z') || \
20
+ (c >= '0' && c <= '9') || (c == '_'))
21
#define is_digit(c) ((c >= '0' && c <= '9'))
-#define is_hex(c) (is_digit(c) || (c >= 'a' && c <= 'f') || \
22
- (c >= 'A' && c <= 'F'))
+#define is_hex(c) \
23
+ (is_digit(c) || (c >= 'a' && c <= 'f') || (c >= 'A' && c <= 'F'))
24
25
/* Limitations */
26
#define MAX_TOKEN_LEN 256
0 commit comments