#ifndef _HEADER_H_ #define _HEADER_H_ typedef struct { const int a; const int b; } element_t; typedef struct { const element_t *element; const int anzahl; } config_t; extern const config_t config; #endif