foot/config.h

12 lines
166 B
C
Raw Normal View History

#pragma once
#include <stdbool.h>
struct config {
2019-07-17 09:29:56 +02:00
char *shell;
char *font;
};
bool config_load(struct config *conf);
void config_free(struct config conf);