9 lines
91 B
C
9 lines
91 B
C
#ifndef POINT_H_
|
|
#define POINT_H_
|
|
|
|
typedef struct {
|
|
int x, y;
|
|
} Point;
|
|
|
|
#endif //POINT_H_
|