diff scid/scid.h @ 26:7e10cace67a3

scid: add basic mustache support
author David Demelier <markand@malikania.fr>
date Tue, 02 Aug 2022 13:24:13 +0200
parents
children 4c16bb25e4f1
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/scid/scid.h	Tue Aug 02 13:24:13 2022 +0200
@@ -0,0 +1,20 @@
+#ifndef SCID_H
+#define SCID_H
+
+#include <limits.h>
+
+extern struct scid {
+	char themedir[PATH_MAX];
+	char dbpath[PATH_MAX];
+} scid;
+
+void
+scid_init(void);
+
+const char *
+scid_theme_path(const char *);
+
+void
+scid_finish(void);
+
+#endif /* !SCID_H */