comparison 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
comparison
equal deleted inserted replaced
25:c40f98360ac9 26:7e10cace67a3
1 #ifndef SCID_H
2 #define SCID_H
3
4 #include <limits.h>
5
6 extern struct scid {
7 char themedir[PATH_MAX];
8 char dbpath[PATH_MAX];
9 } scid;
10
11 void
12 scid_init(void);
13
14 const char *
15 scid_theme_path(const char *);
16
17 void
18 scid_finish(void);
19
20 #endif /* !SCID_H */