Browse Source

Funtion Vergleich

remotes/origin/erwin
fdai7820 11 months ago
parent
commit
fd09e37c4f
  1. 9
      src/main/duellist-spielesammlung-projekt.c

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

Loading…
Cancel
Save