aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorAlexandre Jesus <adbjesus@gmail.com>2016-09-15 00:32:24 +0100
committerAlexandre Jesus <adbjesus@gmail.com>2016-09-15 00:32:24 +0100
commitd8ea8dc5fa670477cb6a3c64a9fe7dbbb0c44898 (patch)
treed582af7bbe4edd2b30d7337c2d532c302eaa62b7 /include
parent9196ea8f3d150b4b538caeb7e5477cf095b359b9 (diff)
downloadlibuknapsack-d8ea8dc5fa670477cb6a3c64a9fe7dbbb0c44898.tar.gz
libuknapsack-d8ea8dc5fa670477cb6a3c64a9fe7dbbb0c44898.zip
Add dfs
Diffstat (limited to 'include')
-rw-r--r--include/dfs.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/include/dfs.h b/include/dfs.h
new file mode 100644
index 0000000..340f5c8
--- /dev/null
+++ b/include/dfs.h
@@ -0,0 +1,8 @@
+#ifndef _DFS_H
+#define _DFS_H
+
+#include "structs.h"
+
+struct front_item * dfs(struct data *);
+
+#endif