axle OS
x86_32 UNIX-like hobby OS
point.h
1 #ifndef POINT_H
2 #define POINT_H
3 
4 typedef struct coordinate {
5  int x;
6  int y;
7 } Point;
8 
9 Point point_make(int x, int y);
10 Point point_zero();
11 
12 #endif
Definition: point.h:4