mirror of
https://codeberg.org/dnkl/foot.git
synced 2026-02-05 04:06:08 -05:00
12 lines
182 B
C
12 lines
182 B
C
#pragma once
|
|
|
|
#include <stdbool.h>
|
|
|
|
struct config {
|
|
char *term;
|
|
char *shell;
|
|
char *font;
|
|
};
|
|
|
|
bool config_load(struct config *conf);
|
|
void config_free(struct config conf);
|