summaryrefslogtreecommitdiff
path: root/src/byte_class.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/byte_class.h')
-rw-r--r--src/byte_class.h8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/byte_class.h b/src/byte_class.h
index 011acda..0ccfbdf 100644
--- a/src/byte_class.h
+++ b/src/byte_class.h
@@ -1,8 +1,10 @@
#define BC_RGLR 0 /* regular character */
#define BC_WSPC 1 /* character is whitespace */
#define BC_EOLM (1<<1) /* character signifies end of line */
-#define BC_DCML (1<<2) /* character is a decimal */
-#define BC_HEXL (1<<3) /* character is a hexadecimal */
-#define BC_DELM (1<<4) /* character is a delimiter */
+#define BC_OCTL (1<<2) /* character is octal */
+#define BC_DCML (1<<3) /* character is decimal */
+#define BC_HEXL (1<<4) /* character is hexadecimal */
+#define BC_DELM (1<<5) /* character is a delimiter */
+#define BC_CMNT (1<<6) /* character is a comment */
const uint8_t *bclass;