mirror of
https://codeberg.org/dnkl/foot.git
synced 2026-02-12 04:27:51 -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);
|