X-Git-Url: https://git.piment-noir.org/?p=TD_C.git;a=blobdiff_plain;f=TP_12%2Fexo1%2Fexo1.c;h=86bace0c5ee60aa7336acefa9130b6fcc48c3db9;hp=900c5b294a8b44108b81fe41e840f5d38cb5e9fb;hb=fbfa3f7836b7c98def1c28a51b0d13a333175bd4;hpb=5668eb729c9f8bc27bb6a2120a37a41fd1043761 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);