From 727a3d65cd7e24540815f005cfba3a62f59b654a Mon Sep 17 00:00:00 2001 From: Thadeu Lima de Souza Cascardo Date: Sat, 16 Aug 2008 09:09:04 -0300 Subject: [PATCH] Export public function to read points file --- point.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/point.h b/point.h index 5b13e26..f503922 100644 --- a/point.h +++ b/point.h @@ -20,10 +20,14 @@ #ifndef POINTS_H #define POINTS_H +#include + typedef struct { int x, y; char *name; } Point; +GArray * ReadPoints (char *); + #endif -- 2.20.1