1 2 3 4 5 6 7 8 9 10
#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