WMII Reforge  Artifact [2bab237c7d]

Artifact 2bab237c7d6a58aee5e6bf732aadb95546fb32c83ddd892fbbee4a3f4bb3da38:

  • File lib/libstuff/x11/geometry/addpt.c — part of check-in [15eae1e8e6] at 2019-06-20 16:42:23 on branch trunk — Import sources to have something to work with (user: KhazAkar size: 198)

/* 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;
}