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