summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorTyge Løvset <[email protected]>2021-02-14 00:13:03 +0100
committerTyge Løvset <[email protected]>2021-02-14 00:13:03 +0100
commitc49c2fcb914d97349e277c3caebb81243ff2edaf (patch)
tree2da9d0bb20fa3a3f9fe38ae172f2947cd2bee52e
parentbec6809e33a0e2cb1fad9ea2cec5870945191462 (diff)
parent7a32bf162ca3b1974707f40f58fa1e759745d7d5 (diff)
downloadSTC-modified-c49c2fcb914d97349e277c3caebb81243ff2edaf.tar.gz
STC-modified-c49c2fcb914d97349e277c3caebb81243ff2edaf.zip
Merge branch 'master' of https://github.com/tylo-work/C99Containers into master
-rw-r--r--README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/README.md b/README.md
index 48d73f53..bb7c78a2 100644
--- a/README.md
+++ b/README.md
@@ -55,7 +55,7 @@ Highlights
- **Fully memory managed** - All containers will destruct keys, values via destructor passed as macro parameters to the ***using_***-declaration. Also smart-pointers are supported and can be stored in containers, see ***csptr***.
- **Fully type safe** - Avoids error-prone casting of container types and elements back and forth from the containers.
- **Uniform API** - Methods to ***construct***, ***initialize***, ***iterate*** and ***destruct*** have a uniform and intuitive usage across the various containers.
-- **Small footprint** - Small source code and generated executables. The executable from the above example with six different containers is *26 kb in size* compiled with TinyC.
+- **Small footprint** - Small source code and generated executables. The executable from the example below using six different containers is *26 kb in size* compiled with TinyC.
- **Dual mode compilation** - By default it is a simple header-only library with inline and static methods only, but you can easily switch to create a traditional library with shared symbols, without changing existing source files. See next how-to.
Usage