This commit is contained in:
frosty
2026-02-23 00:57:21 -05:00
commit b280ab6bcd
37 changed files with 2787 additions and 0 deletions

11
src/Config.h Normal file
View File

@@ -0,0 +1,11 @@
#ifndef CONFIG_H
#define CONFIG_H
typedef struct {
char host[256];
int port;
} Config;
int load_config(const char *filename, Config *config);
#endif