#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