aboutsummaryrefslogtreecommitdiff
path: root/main.h
diff options
context:
space:
mode:
Diffstat (limited to 'main.h')
-rw-r--r--main.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/main.h b/main.h
index ccc9ae1..f7ac7b0 100644
--- a/main.h
+++ b/main.h
@@ -1,3 +1,5 @@
+/* See LICENSE file for copyright and license details. */
+
#define TITLE_LENGTH 200
#define ID_LENGTH 12
@@ -6,3 +8,11 @@ typedef struct list {
char name[101];
struct list *next;
} list;
+
+void error(char *c);
+list *list_create(char title[], char id[]);
+void list_free(list *start);
+void list_append(list *list_first, char title[], char id[]);
+void list_print_item(list *x, int i);
+list *list_get_node(list *x, int index);
+list *parse_stream(FILE *file);
Feel free to download, copy and edit any repo