#ifndef POINT_H #define POINT_H typedef struct { int x; int y; } POINT; #endif // POINT_H