1234567891011121314
#ifndef __CONFIG_H__#define __CONFIG_H__struct configuration { gchar hostname[1024]; gchar password[1024]; gchar bindDN[1024]; gshort version;};typedef struct configuration conf_t;conf_t* read_configfile(gchar*);#endif
123456789
#include "config.h"conf_t* read_configfile(gchar* filename) { FILE* fs = NULL; gint line = 1; conf_t* c; /* haufen code */ return c;}