mirror of
https://codeberg.org/dnkl/foot.git
synced 2026-02-18 22:05:25 -05:00
9 lines
121 B
C
9 lines
121 B
C
|
|
#pragma once
|
||
|
|
|
||
|
|
struct config {
|
||
|
|
char *font;
|
||
|
|
};
|
||
|
|
|
||
|
|
struct config config_load(void);
|
||
|
|
void config_free(struct config conf);
|