// point.h typedef struct { int x; int y; } Point; void point_print(Point* p);