summaryrefslogtreecommitdiffhomepage
path: root/misc/examples/mixed/read.c
diff options
context:
space:
mode:
authorTyge Løvset <[email protected]>2023-07-24 08:48:41 +0200
committerGitHub <[email protected]>2023-07-24 08:48:41 +0200
commit374b3c27831cd4e09461867ed231669777b96951 (patch)
tree88011006f6d536cdb1ad1eca8073392ca80687cc /misc/examples/mixed/read.c
parent177418232a2d8a8b0df1667d3e4bd15dc37db59f (diff)
parent650b053f443f9132dadb6d1ca924c0b36849739f (diff)
downloadSTC-modified-374b3c27831cd4e09461867ed231669777b96951.tar.gz
STC-modified-374b3c27831cd4e09461867ed231669777b96951.zip
Merge pull request #65 from stclib/dev43
Dev43
Diffstat (limited to 'misc/examples/mixed/read.c')
-rw-r--r--misc/examples/mixed/read.c27
1 files changed, 27 insertions, 0 deletions
diff --git a/misc/examples/mixed/read.c b/misc/examples/mixed/read.c
new file mode 100644
index 00000000..de04fd31
--- /dev/null
+++ b/misc/examples/mixed/read.c
@@ -0,0 +1,27 @@
+#define i_implement
+#include <stc/cstr.h>
+#include <stc/algo/raii.h>
+#define i_key_str
+#include <stc/cvec.h>
+#include <errno.h>
+
+cvec_str read_file(const char* name)
+{
+ cvec_str vec = {0};
+ c_with (FILE* f = fopen(name, "r"), fclose(f))
+ c_with (cstr line = {0}, cstr_drop(&line))
+ while (cstr_getline(&line, f))
+ cvec_str_push(&vec, cstr_clone(line));
+ return vec;
+}
+
+int main(void)
+{
+ int n = 0;
+ c_with (cvec_str vec = read_file(__FILE__), cvec_str_drop(&vec))
+ c_foreach (i, cvec_str, vec)
+ printf("%5d: %s\n", ++n, cstr_str(i.ref));
+
+ if (errno)
+ printf("error: read_file(" __FILE__ "). errno: %d\n", errno);
+}