summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorTyge Løvset <[email protected]>2021-01-03 21:44:20 +0100
committerGitHub <[email protected]>2021-01-03 21:44:20 +0100
commit834d696257efbce1aa6ee9878bd992cedc845865 (patch)
tree149948e959f704ae44374005ebb06c2e8c2590b4
parent2901cf2d5a9f02ec910cc29dd0aa424877d079c3 (diff)
downloadSTC-modified-834d696257efbce1aa6ee9878bd992cedc845865.tar.gz
STC-modified-834d696257efbce1aa6ee9878bd992cedc845865.zip
Update README.md
-rw-r--r--README.md2
1 files changed, 2 insertions, 0 deletions
diff --git a/README.md b/README.md
index 095e3032..d99f8bff 100644
--- a/README.md
+++ b/README.md
@@ -37,8 +37,10 @@ int main(void) {
cvec_i vec = cvec_i_init();
cvec_i_push_back(&vec, 1);
cvec_i_push_back(&vec, 2);
+
c_foreach (i, cvec_i, vec)
printf(" %d", *i.ref);
+
cvec_i_del(&vec);
}
```