home · contact · privacy
Server: Remove unneeded library includes.
[plomrogue] / src / server / yx_uint8.h
index 62cc9ce1f9c74fb07eb8df071039bbe8e1299e32..54246fd9b7e7d4519d6f74686669dccdf4644295 100644 (file)
@@ -7,13 +7,10 @@
 #define YX_UINT8_H_SERVER
 
 #include <stdint.h> /* uint8_t */
-#include "../common/yx_uint8.h" /* yx_uint8 */
+struct yx_uint8;
 
 
 
-/* Return 1 if two yx_uint8 coordinates at "a" and "b" are equal, else 0. */
-extern uint8_t yx_uint8_cmp(struct yx_uint8 * a, struct yx_uint8 * b);
-
 /* Move "yx" into hex direction "d". If this moves "yx" beyond the minimal (0)
  * or maximal (UINT8_MAX) column or row, it wraps to the opposite side. Such
  * wrapping is returned as a wraps enum value and stored, so that further calls