blob: ddef12f5d18a8532c520b4e9210b719898b92db5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
#include <libaksettings.h>
#include <libaklog.h>
#include <stdio.h>
void test_ak_settings_from_file()
{
printf("Testing: %s\n", __func__);
if (!ak_settings_load_settings_binary()) {
ak_log_warning(__func__, "No existing settings or error loading.\n");
}
const char *theme = ak_settings_get_setting("theme");
if (theme) {
printf("Current theme: %s\n", theme);
}
ak_settings_free_settings();
}
int main()
{
test_ak_settings_from_file();
return 0;
}
|