generic array list helper
[taskasaur.git] / headers / parser.h
index db4bf8b..41520b7 100644 (file)
@@ -1,4 +1,7 @@
 
+#ifndef __PARSER_H__
+#define __PARSER_H__
+
 #include <stdio.h>
 #include <stdlib.h>
 #include <string.h>
@@ -35,6 +38,8 @@ typedef struct Board {
     int todolist_count;
 } Board;
 
-
 extern Board* begin_parse(char* board_path);
 
+extern void log_todo(Board* board);
+
+#endif