work on writing
[taskasaur.git] / headers / parser.h
index f2a9632..4506364 100644 (file)
@@ -1,7 +1,11 @@
 
+#ifndef __PARSER_H__
+#define __PARSER_H__
+
 #include <stdio.h>
 #include <stdlib.h>
 #include <string.h>
+#include <assert.h>
 #include <md4c.h>
 
 typedef enum SubTaskState {
@@ -34,6 +38,9 @@ typedef struct Board {
     int todolist_count;
 } Board;
 
-
 extern Board* begin_parse(char* board_path);
+extern int begin_write(Board* Board);
+
+extern void log_todo(Board* board);
 
+#endif