X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=TP_9%2Fexo2%2Fclist.c;h=0ee532f36b283d0a8795cf2b10348bf066acfb15;hb=220a34552ecf9184ff6572e7bc472185bee26960;hp=2857042028966a52133304c9bd73d23534b8c22b;hpb=490c6927e0a997c48a9c21649491272b777b70d3;p=TD_C.git diff --git a/TP_9/exo2/clist.c b/TP_9/exo2/clist.c index 2857042..0ee532f 100644 --- a/TP_9/exo2/clist.c +++ b/TP_9/exo2/clist.c @@ -45,7 +45,7 @@ unsigned list_count(link_t* head) { void list_set(link_t* head, unsigned index, int value) { - // FIXME: check for the index value validity + //FIXME: check for the index value validity for (unsigned count = 0; count < index; count++) { head = head->next; }