home · contact · privacy
Added #include guards.
[plomrogue] / src / yx_uint16.h
1 #ifndef YX_UINT16_H
2 #define YX_UINT16_H
3
4 struct yx_uint16 {
5   uint16_t y;
6   uint16_t x; };
7
8 extern char yx_uint16_cmp (struct yx_uint16, struct yx_uint16);
9
10 #endif