mirror of
https://codeberg.org/dnkl/foot.git
synced 2026-02-08 10:06:22 -05:00
9 lines
138 B
C
9 lines
138 B
C
#pragma once
|
|
|
|
struct config {
|
|
char *shell;
|
|
char *font;
|
|
};
|
|
|
|
struct config config_load(void);
|
|
void config_free(struct config conf);
|