remove not needed returns

This commit is contained in:
blahai 2025-01-24 10:46:33 +00:00
parent 22d0414de5
commit 1898af82e2

View file

@ -55,15 +55,12 @@ int main(int argc, char **argv) {
};
if (strcmp("help", argv[1]) == 0) {
printf("help command \n");
return 0;
};
if (strcmp("ball", argv[1]) == 0) {
ball_vol();
return 0;
};
if (strcmp("ooe", argv[1]) == 0) {
odd_or_even();
return 0;
};
return 0;