Lines Matching refs:CONFIG
44 #include "config.h"
50 /* These options only make sense in the config file, so don't use any
64 {"config", required_argument, NULL, 'f'},
686 if (ifo->config != NULL) {
687 while (ifo->config[s] != NULL) {
688 if (strncmp(ifo->config[s], arg,
691 free(ifo->config[s]);
692 ifo->config[s] = xstrdup(arg);
698 ifo->config = xrealloc(ifo->config,
700 ifo->config[s] = xstrdup(arg);
701 ifo->config[s + 1] = NULL;
831 f = fopen(file ? file : CONFIG, "r");
925 if (ifo->config) {
927 while (ifo->config[i])
928 free(ifo->config[i++]);
929 free(ifo->config);