summaryrefslogtreecommitdiff
path: root/src/include/parser.h
diff options
context:
space:
mode:
authorbpc2003 <wpesfriendnva@gmail.com>2025-03-10 11:15:04 -0400
committerbpc2003 <wpesfriendnva@gmail.com>2025-03-10 11:15:04 -0400
commit7c8e83f655e41b11e970fd0abad5a96a3fb73e47 (patch)
tree057e9c4dd571a4f6f4738b51d53641fcb20ea4dc /src/include/parser.h
parent9b568eba7d0652e9f9457958f16dc35702c4a950 (diff)
Consolidated each header into single header
Diffstat (limited to 'src/include/parser.h')
-rw-r--r--src/include/parser.h20
1 files changed, 0 insertions, 20 deletions
diff --git a/src/include/parser.h b/src/include/parser.h
deleted file mode 100644
index 25045ae..0000000
--- a/src/include/parser.h
+++ /dev/null
@@ -1,20 +0,0 @@
-#ifndef PARSER_H
-#define PARSER_H
-
-extern int blen;
-
-enum btype {
- BEGIN = 1,
- END, PAIR,
-
- ERROR
-};
-
-struct byte {
- enum btype type;
- char *value;
-};
-
-struct byte *parse(unsigned char *buf);
-
-#endif