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; + } +}