2020-08-26 03:19:23 +02:00

10 lines
77 B
C

#ifndef POINT_H
#define POINT_H
struct point {
int x;
int y;
};
#endif