summaryrefslogtreecommitdiffhomepage
path: root/misc/examples/new_list.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/new_list.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/new_list.c')
-rw-r--r--misc/examples/new_list.c70
1 files changed, 0 insertions, 70 deletions
diff --git a/misc/examples/new_list.c b/misc/examples/new_list.c
deleted file mode 100644
index 2112bf1f..00000000
--- a/misc/examples/new_list.c
+++ /dev/null
@@ -1,70 +0,0 @@
-#include <stdio.h>
-#include <stc/forward.h>
-
-forward_clist(clist_i32, int);
-forward_clist(clist_pnt, struct Point);
-
-typedef struct {
- clist_i32 intlist;
- clist_pnt pntlist;
-} MyStruct;
-
-#define i_key int
-#define i_tag i32
-#define i_is_forward
-#include <stc/clist.h>
-
-typedef struct Point { int x, y; } Point;
-int point_cmp(const Point* a, const Point* b) {
- int c = a->x - b->x;
- return c ? c : a->y - b->y;
-}
-
-#define i_key Point
-#define i_cmp point_cmp
-#define i_is_forward
-#define i_tag pnt
-#include <stc/clist.h>
-
-#define i_key float
-#define i_cmp_native // use < and == operators for comparison
-#include <stc/clist.h>
-
-void MyStruct_drop(MyStruct* s);
-#define i_type MyList
-#define i_key MyStruct
-#define i_keydrop MyStruct_drop // define drop function
-#define i_no_clone // must explicitely exclude or define cloning support because of drop.
-#include <stc/clist.h>
-
-void MyStruct_drop(MyStruct* s) {
- clist_i32_drop(&s->intlist);
- clist_pnt_drop(&s->pntlist);
-}
-
-
-int main(void)
-{
- MyStruct my = {0};
- clist_i32_push_back(&my.intlist, 123);
- clist_pnt_push_back(&my.pntlist, c_LITERAL(Point){123, 456});
- MyStruct_drop(&my);
-
- clist_pnt plist = c_init(clist_pnt, {{42, 14}, {32, 94}, {62, 81}});
- clist_pnt_sort(&plist);
-
- c_foreach (i, clist_pnt, plist)
- printf(" (%d %d)", i.ref->x, i.ref->y);
- puts("");
- clist_pnt_drop(&plist);
-
-
- clist_float flist = c_init(clist_float, {123.3f, 321.2f, -32.2f, 78.2f});
- clist_float_sort(&flist);
-
- c_foreach (i, clist_float, flist)
- printf(" %g", (double)*i.ref);
-
- puts("");
- clist_float_drop(&flist);
-}