Add config.c and config.h

This commit is contained in:
2021-01-05 23:01:38 +01:00
parent 55028bd9cd
commit 4d4d94fc81
5 changed files with 58 additions and 6 deletions

17
src/config.c Normal file
View File

@ -0,0 +1,17 @@
/**
* Necronda Web Server
* Configuration file loader
* src/config.c
* Lorenz Stechauner, 2021-01-05
*/
#include "config.h"
int config_init() {
return 0;
}
int config_load() {
return 0;
}