10 lines
77 B
C
10 lines
77 B
C
#ifndef POINT_H
|
|
#define POINT_H
|
|
|
|
struct point {
|
|
int x;
|
|
int y;
|
|
};
|
|
|
|
#endif
|