mirror of
https://github.com/0intro/wmii
synced 2025-02-18 07:14:53 +03:00
12 lines
198 B
C
12 lines
198 B
C
/* Copyright ©2007-2010 Kris Maglione <maglione.k at Gmail>
|
|
* See LICENSE file for license details.
|
|
*/
|
|
#include "../x11.h"
|
|
|
|
Point
|
|
addpt(Point p, Point q) {
|
|
p.x += q.x;
|
|
p.y += q.y;
|
|
return p;
|
|
}
|