Sophie

Sophie

distrib > Fedora > 14 > x86_64 > media > updates > by-pkgid > 208586bb5002d462fc81d713e794f31c > files > 28

dotconf-devel-1.3-2.fc14.x86_64.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
};