X-Git-Url: https://git.danieliu.xyz/?a=blobdiff_plain;f=headers%2Fparser.h;h=41520b771cefe4dc029e8814fb96145d8550fe79;hb=82204679646dbb05f22adf6dca9bca18943ea9f6;hp=f2a96322d4f557a499fcf6eabb3e6636a1f00deb;hpb=7c9d33c1eb0eb97911c7d1cd073cb70b53dedf62;p=taskasaur.git diff --git a/headers/parser.h b/headers/parser.h index f2a9632..41520b7 100644 --- a/headers/parser.h +++ b/headers/parser.h @@ -1,7 +1,11 @@ +#ifndef __PARSER_H__ +#define __PARSER_H__ + #include #include #include +#include #include typedef enum SubTaskState { @@ -34,6 +38,8 @@ typedef struct Board { int todolist_count; } Board; - extern Board* begin_parse(char* board_path); +extern void log_todo(Board* board); + +#endif