Sophie

Sophie

distrib > Mageia > 7 > i586 > media > core-release > by-pkgid > 08109741d1ea5f48d1056ba102f07fe4 > files > 24

dotconf-examples-1.3-7.mga7.noarch.rpm

#include <stdio.h>
#include <dotconf.h>

static DOTCONF_CB(cb_newoption)
{
	printf("[FIRST_MODULE] Line %ld: Option=%s str=%s\n",
	       cmd->configfile->line, cmd->name, cmd->data.str);
	return NULL;
}

configoption_t options[] = {
	{"DupOption", ARG_STR, cb_newoption, 0, 0}
	,
	LAST_OPTION
};