view 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 source

#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 */