From a592eadef06988e650ae09de0f9f5abffb482663 Mon Sep 17 00:00:00 2001
From: Christian Heller <c.heller@plomlompom.de>
Date: Wed, 21 Aug 2013 21:10:05 +0200
Subject: [PATCH] Re-styled code.

---
 src/yx_uint16.c | 12 ++++++++++++
 1 file changed, 12 insertions(+)

diff --git a/src/yx_uint16.c b/src/yx_uint16.c
index 2d7503b..4898c4a 100644
--- a/src/yx_uint16.c
+++ b/src/yx_uint16.c
@@ -9,9 +9,13 @@
 extern char yx_uint16_cmp(struct yx_uint16 a, struct yx_uint16 b)
 {
     if (a.y == b.y && a.x == b.x)
+    {
         return 1;
+    }
     else
+    {
         return 0;
+    }
 }
 
 
@@ -19,12 +23,20 @@ extern char yx_uint16_cmp(struct yx_uint16 a, struct yx_uint16 b)
 extern struct yx_uint16 mv_yx_in_dir(enum dir d, struct yx_uint16 yx)
 {
     if      (d == NORTH)
+    {
         yx.y--;
+    }
     else if (d == EAST)
+    {
         yx.x++;
+    }
     else if (d == SOUTH)
+    {
         yx.y++;
+    }
     else if (d == WEST)
+    {
         yx.x--;
+    }
     return yx;
 }
-- 
2.30.2