Skip to content
Snippets Groups Projects

makefile et autres

Open LEPPERT MICHAEL requested to merge mleppert/P4z:master into master
Viewing commit 1067e044
Show latest version
2 files
+ 5
5
Preferences
Compare changes
Files
2
+ 1
1
@@ -58,7 +58,7 @@ void genTabDecroi(long tabARemplir[], size_t tailleTab) {
rand_is_seeded = 1;
}
for(size_t i=0; i<tailleTab; i++){
tabARemplir[i]=rand()%(10);
tabARemplir[i]=rand()%(1000);
}
qsort( tabARemplir, tailleTab, sizeof(long), longComparator );
}