1 # linked_list.h |
1 # Linked List |
2 |
2 |
3 On top of implementing the list interface, this header also defines several low-level functions that |
3 On top of implementing the list interface, this header also defines several low-level functions that |
4 work with arbitrary structures. |
4 work with arbitrary structures. |
5 Low-level functions, in contrast to the high-level list interface, can easily be recognized by their snake-casing. |
5 Low-level functions, in contrast to the high-level list interface, can easily be recognized by their snake-casing. |
6 The function `cx_linked_list_at`, for example, implements a similar functionality like `cxListAt`, but operates |
6 The function `cx_linked_list_at`, for example, implements a similar functionality like `cxListAt`, but operates |