sw1nek23per/sw1nek23per/lib/config.h
2025-03-12 08:39:47 +03:00

24 lines
419 B
C

#ifndef CONFIG_H
#define CONFIG_H
#include <stdint.h>
#include <stdbool.h>
#define WIDTH_LIMIT 20
#define HEIGHT_LIMIT 20
#define MINES_LIMIT 20
#define FLAGS_LIMIT 20
#define DEFAULT_CONFIG_FILENAME "settings.ini"
typedef struct {
uint8_t width;
uint8_t height;
uint8_t mines;
uint8_t flags;
} config;
typedef enum { WIDTH, HEIGHT, MINES, FLAGS, UNKNOWN } options;
bool read_config(config *conf);
#endif