blob: 007393b8942738da5609c68af6f7228781f52e6f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#ifndef COMET_CONFIG_H
#define COMET_CONFIG_H
#include <stdio.h>
#include "block.h"
typedef struct {
block_t block;
char *font;
char *monitor;
unsigned int height;
unsigned int width;
} config_t;
void config_init(config_t *config);
void config_read(config_t *config, FILE *file);
void config_free(config_t *config);
#endif
|