blob: 52e7cf08fc553522db1f6b838382c61bb9d0a4dc (
plain)
1
2
3
4
5
6
7
8
9
10
11
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
|