point.h 99 B

123456789
  1. #ifndef POINT_H
  2. #define POINT_H
  3. typedef struct {
  4. int x;
  5. int y;
  6. } POINT;
  7. #endif // POINT_H