X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=TP_12%2Fexo1%2Fexo1.c;h=86bace0c5ee60aa7336acefa9130b6fcc48c3db9;hb=fbfa3f7836b7c98def1c28a51b0d13a333175bd4;hp=900c5b294a8b44108b81fe41e840f5d38cb5e9fb;hpb=26c30d17565a3c8116fa963f19d8f97a1acff914;p=TD_C.git diff --git a/TP_12/exo1/exo1.c b/TP_12/exo1/exo1.c index 900c5b2..86bace0 100644 --- a/TP_12/exo1/exo1.c +++ b/TP_12/exo1/exo1.c @@ -35,7 +35,7 @@ bool sortFirst(int* array, int length, compare_cb compare) { } void sortArray(int* array, int length, compare_cb compare) { - bool rt; + bool rt; do { rt = sortFirst(array, length, compare); } while (rt);