#include #include #include "nfcommander.h" #include "config.h" int config_read(char* path){ //TODO printf("Reading config file %s\n", path); return 0; } char* config_get(char* section, char* property){ //TODO printf("Querying for config property %s->%s\n", section, property); //TEMP if(!strcmp(property, "reader")){ return "yhy"; } return NULL; } void config_free(){ //TODO printf("Cleaning up config data\n"); }