summaryrefslogtreecommitdiffhomepage
path: root/misc/examples/new_pque.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_pque.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_pque.c')
-rw-r--r--misc/examples/new_pque.c22
1 files changed, 0 insertions, 22 deletions
diff --git a/misc/examples/new_pque.c b/misc/examples/new_pque.c
deleted file mode 100644
index 16823bb6..00000000
--- a/misc/examples/new_pque.c
+++ /dev/null
@@ -1,22 +0,0 @@
-#include <stdio.h>
-
-typedef struct Point { int x, y; } Point;
-
-#define i_type PointQ
-#define i_key Point
-#define i_less(a, b) a->x < b->x || (a->x == b->x && a->y < b->y)
-#include <stc/cpque.h>
-
-
-int main(void)
-{
- PointQ pque = c_init(PointQ, {{23, 80}, {12, 32}, {54, 74}, {12, 62}});
- // print
- for (; !PointQ_empty(&pque); PointQ_pop(&pque))
- {
- const Point *v = PointQ_top(&pque);
- printf(" (%d,%d)", v->x, v->y);
- }
- puts("");
- PointQ_drop(&pque);
-}