summaryrefslogtreecommitdiffhomepage
path: root/README.md
diff options
context:
space:
mode:
authorTyge Løvset <[email protected]>2022-04-28 15:20:33 +0200
committerTyge Løvset <[email protected]>2022-04-28 15:20:33 +0200
commitc68b5bac81319612e94b231af234bad6ef559c61 (patch)
treed09e899d69a7d146f2b741c308036c545167be8d /README.md
parentc542a17addd954ef0c5c9c9a80c368773a3d98b7 (diff)
downloadSTC-modified-c68b5bac81319612e94b231af234bad6ef559c61.tar.gz
STC-modified-c68b5bac81319612e94b231af234bad6ef559c61.zip
_i_implement moved to user-level template parameter as i_implement. Removed i_opt flag c_implement. Removed OLD include/alt/clist.h
Diffstat (limited to 'README.md')
-rw-r--r--README.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/README.md b/README.md
index 0315fa17..bcb0b700 100644
--- a/README.md
+++ b/README.md
@@ -244,7 +244,7 @@ specify **-DSTC_HEADER** as a compiler option in your build environment and plac
of containers used in a single C-source file, e.g.:
```c
// stc_libs.c
-#define STC_IMPLEMENTATION
+#define STC_IMPLEMENT
#include <stc/cstr.h>
#include "Point.h"
@@ -280,7 +280,7 @@ The list of template parameters:
Properties:
- `i_tag` - Container type name tag. Defaults to *i_key* name.
- `i_type` - Full container type name. Alternative to *i_tag*.
-- `i_opt` - Boolean properties: may combine *c_no_cmp*, *c_no_clone*, *c_no_atomic*, *c_is_fwd*, *c_static*, *c_header*, *c_implement* with the *|* separator.
+- `i_opt` - Boolean properties: may combine *c_no_cmp*, *c_no_clone*, *c_no_atomic*, *c_is_fwd*, *c_static*, *c_header* with the *|* separator.
Key:
- `i_keydrop` - Destroy map/set key func - defaults to empty destructor.