summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--README.md8
1 files changed, 4 insertions, 4 deletions
diff --git a/README.md b/README.md
index 773ce7b8..26438388 100644
--- a/README.md
+++ b/README.md
@@ -94,10 +94,10 @@ The containers are memory efficent. E.g. the circular list is intrusive so only
- **CHash set**: Representation: 4 pointers size. The hash table stores a key per bucket, and one table of "used/hash-value", occupying only one byte per bucket.
- **CHash map**: Same as CHash set, but each bucket in the array stores a (key, value) pair, not only the key.
-Examples
---------
+Demos
+-----
-**CString** demo
+**CString**
```
#include <stc/cstring.h>
@@ -232,7 +232,7 @@ int main() {
clist_i_destroy(&list);
}
```
-**CArray** demo
+**CArray**
```
#include <stc/carray.h>
declare_CArray(f, float);