Simplify configfile implementation

This commit is contained in:
Martin Lund 2022-10-16 23:16:27 +02:00
parent a97b2c00cd
commit ad9b93dc52
2 changed files with 72 additions and 86 deletions

View file

@ -22,22 +22,6 @@
#pragma once
struct config_t
{
const char *user;
char *path;
char *section_name;
char *match;
char *tty;
char *flow;
char *parity;
char *log_filename;
char *socket;
char *map;
};
void config_file_print(void);
void config_file_parse(void);
void config_exit(void);