Update the exercice skeleton Makefile to the one given during the
[TD_C.git] / TP_9 / exo2 / clist.c
index 2857042028966a52133304c9bd73d23534b8c22b..0ee532f36b283d0a8795cf2b10348bf066acfb15 100644 (file)
@@ -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;
     }