foot/config.h
2019-07-17 09:29:56 +02:00

9 lines
138 B
C

#pragma once
struct config {
char *shell;
char *font;
};
struct config config_load(void);
void config_free(struct config conf);