home · contact · privacy
Moved basic yx_uint16 handling into its own library.
[plomrogue] / src / yx_uint16.h
1 struct yx_uint16 {
2   uint16_t y;
3   uint16_t x; };
4
5 extern char yx_uint16_cmp (struct yx_uint16, struct yx_uint16);
6