#ifndef map_h #define map_h typedef struct Map { int w, h; } Map; typedef unsigned Map_Tile; int map_size(int w, int h); #endif