Files
awesomeUnicorns/include/point.h
2017-08-26 09:21:00 -04:00

14 lines
288 B
C

#ifndef POINT_H
#define POINT_H
#include "structs.h"
void copyPoint(Point* p1, Point p2);
Point newPoint(int x, int y);
/* Compare the two points to see if they are equal.
* Params: Two points. */
int compare(Point p1, Point p2);
int compareRange(Point p, Point t, int range);
#endif