From fd09e37c4f4c4ba8d25fb6b7ae880e11c5140f0f Mon Sep 17 00:00:00 2001
From: fdai7820 <areebahmad4999@gmail.com>
Date: Thu, 8 Feb 2024 18:03:32 +0100
Subject: [PATCH] Funtion Vergleich

---
 src/main/duellist-spielesammlung-projekt.c | 9 +++++++++
 1 file changed, 9 insertions(+)

diff --git a/src/main/duellist-spielesammlung-projekt.c b/src/main/duellist-spielesammlung-projekt.c
index a0e9cf2..7a496c8 100644
--- a/src/main/duellist-spielesammlung-projekt.c
+++ b/src/main/duellist-spielesammlung-projekt.c
@@ -418,6 +418,15 @@ int modulo(int a, int b) {
     }
 }
 
+int compare(int a, int b) {
+    if (a == b) {
+        return 0;
+    } else if (a < b) {
+        return -1;
+    } else {
+        return 1;
+    }
+}