mirror of
https://github.com/owntone/owntone-server.git
synced 2024-12-28 08:05:56 -05:00
16 lines
180 B
C
16 lines
180 B
C
|
|
#ifndef __CONFFILE_H__
|
|
#define __CONFFILE_H__
|
|
|
|
#include <confuse.h>
|
|
|
|
extern cfg_t *cfg;
|
|
|
|
int
|
|
conffile_load(char *file);
|
|
|
|
void
|
|
conffile_unload(void);
|
|
|
|
#endif /* !__CONFFILE_H__ */
|