diff options
Diffstat (limited to 'src/include/parser.h')
-rw-r--r-- | src/include/parser.h | 20 |
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 |