aboutsummaryrefslogtreecommitdiff
path: root/snag/src/source_db.h
diff options
context:
space:
mode:
authorJack Jamison <jackqjamison@gmail.com>2026-07-23 15:34:43 -0400
committerJack Jamison <jackqjamison@gmail.com>2026-07-23 15:34:43 -0400
commit9282991429a92d6df17213acdc49fe687f42da6c (patch)
tree0e7ca7f74ba0c8b445956eab4d47545e0adcf407 /snag/src/source_db.h
parentd9bc99629dd3f8624df98ead06f400c4ffb3880b (diff)
download db is now source db, ready to start build
Diffstat (limited to 'snag/src/source_db.h')
-rw-r--r--snag/src/source_db.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/snag/src/source_db.h b/snag/src/source_db.h
new file mode 100644
index 0000000..e22f221
--- /dev/null
+++ b/snag/src/source_db.h
@@ -0,0 +1,10 @@
+#ifndef SOURCE_DB_H
+#define SOURCE_DB_H
+
+#include "package.h"
+
+bool verify_source(source_info_t* source);
+bool download_source(source_info_t* source);
+bool unpack_source(source_info_t* source, char* dest_path);
+
+#endif