foot/config.h
2019-07-18 14:29:40 +02:00

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);