forked from github/server
89649844f6
simplifying git repository structure
13 lines
237 B
C
Executable file
13 lines
237 B
C
Executable file
#ifndef BIND_ERESSEA_PROCESS_H
|
|
#define BIND_ERESSEA_PROCESS_H
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
const char * settings_get(const char *key);
|
|
void settings_set(const char *key, const char *value);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
#endif
|