#ifndef LIBFLINT_H_UTILITY #define LIBFLINT_H_UTILITY /** * \struct Point * \brief Representation of a point on a two dimensional grid * \var int x * x point on the 2d grid * \var int y * y point on the 2d grid */ typedef struct Point { int x; int y; } Point; #endif // LIBFLINT_H_UTILITY