summaryrefslogtreecommitdiffhomepage
path: root/misc/examples/coread.c
diff options
context:
space:
mode:
authorTyge Løvset <[email protected]>2023-02-23 20:40:48 +0100
committerTyge Løvset <[email protected]>2023-02-23 20:40:48 +0100
commit95656f384672748dcf02c256e23534728bef80d9 (patch)
tree8ae535749a40f2a2f5c7a716bd339b177f657bef /misc/examples/coread.c
parentfadfc47abd5f8fe0757244b3b9eb5a1ae78e0dce (diff)
downloadSTC-modified-95656f384672748dcf02c256e23534728bef80d9.tar.gz
STC-modified-95656f384672748dcf02c256e23534728bef80d9.zip
Replaced coroutine.h with ccoro.h. Stackbased only.
Diffstat (limited to 'misc/examples/coread.c')
-rw-r--r--misc/examples/coread.c32
1 files changed, 17 insertions, 15 deletions
diff --git a/misc/examples/coread.c b/misc/examples/coread.c
index e65ab533..a3eac7f9 100644
--- a/misc/examples/coread.c
+++ b/misc/examples/coread.c
@@ -1,41 +1,43 @@
#include <stc/cstr.h>
-#include <stc/algo/coroutine.h>
+#include <stc/algo/ccoro.h>
#include <errno.h>
// Read file line by line using coroutines:
-cstr file_nextline(cco_handle* z, const char* name)
+struct file_nextline {
+ const char* filename;
+ int ccoro_state;
+ FILE* fp;
+ cstr line;
+};
+
+cstr file_nextline(struct file_nextline* U)
{
- cco_context(z,
- FILE* fp;
- cstr line;
- );
- cco_routine(U,
- U->fp = fopen(name, "r");
+ ccoro_execute(U,
+ U->fp = fopen(U->filename, "r");
U->line = cstr_NULL;
while (cstr_getline(&U->line, U->fp))
- cco_yield (cstr_clone(U->line));
+ ccoro_yield (cstr_clone(U->line));
- cco_finish: // cco_finish is needed to support cco_stop.
+ ccoro_final: // ccoro_final is needed to support ccoro_stop.
printf("finish\n");
cstr_drop(&U->line);
fclose(U->fp);
);
-
return cstr_NULL;
}
int main(void) {
- cco_handle z = 0;
+ struct file_nextline z = {__FILE__};
int n = 0;
do {
- c_with (cstr line = file_nextline(&z, __FILE__), z, cstr_drop(&line)) {
+ c_with (cstr line = file_nextline(&z), ccoro_alive(&z), cstr_drop(&line)) {
printf("%3d %s\n", ++n, cstr_str(&line));
// stop after 15 lines:
- if (n == 15) file_nextline(cco_stop(&z), __FILE__);
+ if (n == 15) file_nextline(ccoro_stop(&z));
}
- } while (z);
+ } while (ccoro_alive(&z));
}