// point.h #ifndef POINT_H #define POINT_H typedef struct { int x; int y; } Point; void point_print(Point* p); #endif