summaryrefslogtreecommitdiff
path: root/rect.h
blob: b05560789cd29e942bfe727d7abb7a1d61ae3207 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
#ifndef rect_h
#define rect_h

typedef struct {
	int x, y, w, h;
} Rect;

Rect* rect_clip(Rect* r, const Rect* c);
Rect* rect_clips(Rect* r, Rect* s, const Rect* c);

#endif