#ifndef _BOK_H_ #define _BOK_H_ /* typdeklarationer */ typedef struct { int bokNr; char *forfattare; char *titel; int antalSidor; } Bok; /* prototyper */ Bok *skapaBok(char *titel, char* forf, int antalS, int bokNr); void skrivBok(void *b); int jmfTitel(void *titel, void *bok2); int jmfForfattare(void *forfattare1, void *bok2); #endif