1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
#include <stdio.h> int debug; int opencfgfile(const char *cfgfile, FILE **fd) { if (cfgfile[0] != '\0') { if ((*fd = fopen(cfgfile, "r")) != NULL) { if (debug) printf("Config file: --config\n"); } } return 2; }