Config.h 155 B

1234567891011
  1. #ifndef CONFIG_H
  2. #define CONFIG_H
  3. typedef struct {
  4. char host[256];
  5. int port;
  6. } Config;
  7. int load_config(const char *filename, Config *config);
  8. #endif