src/linked_list.c

changeset 628
1e2be40f0cb5
parent 592
bb69ef3ad1f3
child 629
6c81ee4f11ad
     1.1 --- a/src/linked_list.c	Sun Nov 20 17:48:42 2022 +0100
     1.2 +++ b/src/linked_list.c	Sun Nov 20 21:08:36 2022 +0100
     1.3 @@ -32,7 +32,7 @@
     1.4  #include <string.h>
     1.5  #include <assert.h>
     1.6  
     1.7 -/* LOW LEVEL LINKED LIST FUNCTIONS */
     1.8 +// LOW LEVEL LINKED LIST FUNCTIONS
     1.9  
    1.10  #define CX_LL_PTR(cur, off) (*(void**)(((char*)(cur))+(off)))
    1.11  #define ll_prev(node) CX_LL_PTR(node, loc_prev)
    1.12 @@ -337,7 +337,7 @@
    1.13      return ret;
    1.14  }
    1.15  
    1.16 -void cx_linked_list_sort( /* NOLINT(misc-no-recursion) - purposely recursive function */
    1.17 +void cx_linked_list_sort( // NOLINT(misc-no-recursion) - purposely recursive function
    1.18          void **begin,
    1.19          void **end,
    1.20          ptrdiff_t loc_prev,
    1.21 @@ -455,7 +455,7 @@
    1.22      *begin = prev;
    1.23  }
    1.24  
    1.25 -/* HIGH LEVEL LINKED LIST IMPLEMENTATION */
    1.26 +// HIGH LEVEL LINKED LIST IMPLEMENTATION
    1.27  
    1.28  typedef struct cx_linked_list_node cx_linked_list_node;
    1.29  struct cx_linked_list_node {

mercurial