#ifndef _FD_ROOM_ #define _FD_ROOM_ typedef struct Room Room; struct Room { char *name; char *description; }; #endif