about summary refs log tree commit diff stats
path: root/ignore.h
diff options
context:
space:
mode:
Diffstat (limited to 'ignore.h')
-rw-r--r--ignore.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/ignore.h b/ignore.h
new file mode 100644
index 0000000..9ae5c6f
--- /dev/null
+++ b/ignore.h
@@ -0,0 +1,10 @@
+#define IGNORE_SIZE 100
+
+struct ignores {
+	char **list;
+	int size;
+};
+
+struct ignores *init_ignores(char *path);
+
+void free_ignores(struct ignores *ignores);