diff options
Diffstat (limited to 'include/coordinate.h')
-rw-r--r-- | include/coordinate.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/include/coordinate.h b/include/coordinate.h new file mode 100644 index 0000000..52e7cf0 --- /dev/null +++ b/include/coordinate.h @@ -0,0 +1,12 @@ +#ifndef _COORD +#define _COORD + +#include "types.h" + +/* + * This functions will NOT alloc memory for the Coord pointer + */ +int coord_init(Coord*, char, char); +int coord_init_from_str(Coord*, char*); + +#endif |