aboutsummaryrefslogtreecommitdiff
path: root/src/config.h
blob: 985ad4cce9a5a3ad0d011f7bc439f18279ad6656 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#ifndef COMET_CONFIG_H
#define COMET_CONFIG_H

#include <stdio.h>

typedef struct {
    char *font;
    char *monitor;
    int height;
    int width;
} config_t;

void config_init(config_t *config, FILE *file);

#endif