mirror of
https://github.com/LibreSplit/LibreSplit.git
synced 2026-04-28 06:40:23 +00:00
This should allow for plugins to refer to LibreSplit's functions without having to pull in half of the codebase.
14 lines
229 B
C
14 lines
229 B
C
#pragma once
|
|
|
|
#include "include/settings/definitions.h"
|
|
|
|
#include <jansson.h>
|
|
|
|
#include <stdbool.h>
|
|
|
|
extern AppConfig cfg;
|
|
|
|
#define CFG_SET_STR(a, b) strncpy(a, b, sizeof(a) - 1);
|
|
|
|
bool config_init(void);
|
|
bool config_save(void);
|