summaryrefslogtreecommitdiffhomepage
path: root/misc/examples/intrusive.c
diff options
context:
space:
mode:
authortylov <[email protected]>2023-07-20 15:09:10 +0200
committertylov <[email protected]>2023-07-20 15:12:29 +0200
commit900295256d825fc323149cd223c49787f32a3696 (patch)
tree6c79cf4209e3975bb6865e2940b9cb56ea469c73 /misc/examples/intrusive.c
parent224a04f7fa7549ed94d2a1415eb25829e39a7cca (diff)
downloadSTC-modified-900295256d825fc323149cd223c49787f32a3696.tar.gz
STC-modified-900295256d825fc323149cd223c49787f32a3696.zip
Moved examples to sub-directories. Added cotask1.c cotask2.c examples.
Diffstat (limited to 'misc/examples/intrusive.c')
-rw-r--r--misc/examples/intrusive.c33
1 files changed, 0 insertions, 33 deletions
diff --git a/misc/examples/intrusive.c b/misc/examples/intrusive.c
deleted file mode 100644
index c22ed260..00000000
--- a/misc/examples/intrusive.c
+++ /dev/null
@@ -1,33 +0,0 @@
-// Example of clist using the node API.
-
-#include <stdio.h>
-
-#define i_type List
-#define i_key int
-#define i_cmp_native
-#include <stc/clist.h>
-
-void printList(List list) {
- printf("list:");
- c_foreach (i, List, list)
- printf(" %d", *i.ref);
- puts("");
-}
-
-int main(void) {
- List list = {0};
- c_forlist (i, int, {6, 9, 3, 1, 7, 4, 5, 2, 8})
- List_push_back_node(&list, c_new(List_node, {0, *i.ref}));
-
- printList(list);
-
- puts("Sort list");
- List_sort(&list);
- printList(list);
-
- puts("Remove nodes from list");
- while (!List_empty(&list))
- c_free(List_unlink_after_node(&list, list.last));
-
- printList(list);
-}