forked from github/server
abca25d1d5
fix copyright date remove vi ts=2 code remove a couple of superfluous extern declarations
14 lines
277 B
C
Executable file
14 lines
277 B
C
Executable file
#include "bind_settings.h"
|
|
|
|
#include <platform.h>
|
|
#include <kernel/config.h>
|
|
|
|
const char * settings_get(const char *key)
|
|
{
|
|
return get_param(global.parameters, key);
|
|
}
|
|
|
|
void settings_set(const char *key, const char *value)
|
|
{
|
|
set_param(&global.parameters, key, value);
|
|
}
|