ive got a struct problem it returns:
cd.h:15: error: two or more data types in declaration specifiers
its probably something simple ...
struct cd {
char titel[32];
char artiest[32];
int speelduur;
};
typedef struct cd CD;
struct cdlijst{
CD *item;
struct cdlijst *next;
}
typedef struct cdlijst CDLijst;