#ifndef RECTS_H #define RECTS_H typedef struct { int left, top; int bottom, right; } rect_t; typedef struct { int x, y; unsigned width, height; } frame_t; #endif /* RECTS_H */