This commit is contained in:
2023-12-11 16:19:17 +01:00
parent e83a53cecc
commit f72d72fa8e
10 changed files with 173 additions and 66 deletions

View File

@@ -7,7 +7,7 @@
#include <stdio.h>
int maj_queue(int* queue, int** p) {
void maj_queue(int* queue, int** p) {
if ( p[queue[0] +1 ][queue[1]] == 1 ) {
@@ -31,7 +31,5 @@ int maj_queue(int* queue, int** p) {
queue[1] = queue[1] -1;
}
return EXIT_SUCCESS;
}