#ifndef rect_h #define rect_h typedef struct { int x, y, w, h; } Rectangle; Rectangle make_rect(int x, int y, int w, int h); #endif