Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/P-p-H-d/mlib.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPatrick Pelissier <patrick.pelissier@gmail.com>2023-03-24 23:12:28 +0300
committerPatrick Pelissier <patrick.pelissier@gmail.com>2023-03-24 23:12:28 +0300
commit085f371693a3d041b4ffd0de111821bd2319396b (patch)
tree0619ed8c98cf568f8de6fc82b93e040566d40bd7 /README.md
parent16a0a5c1a32efdc6f6d0fe20b9dadad6882556bb (diff)
Update doc
Diffstat (limited to 'README.md')
-rw-r--r--README.md5
1 files changed, 4 insertions, 1 deletions
diff --git a/README.md b/README.md
index 5d18bf7..7479e7f 100644
--- a/README.md
+++ b/README.md
@@ -802,7 +802,7 @@ exports all needed methods to handle generic input/output of int/floats
This explains why JSON import/export is only available in C11 mode
(See below chapter).
-Basic usage of oplist is availble in the [example](https://github.com/P-p-H-d/mlib/blob/master/example/ex-array00.c)
+Basic usage of oplist is available in the [example](https://github.com/P-p-H-d/mlib/blob/master/example/ex-array00.c)
### Oplist inheritance
@@ -837,6 +837,9 @@ MY\_INT\_OPLIST is a new oplist that handles integers but has disabled the opera
The main interest is to disable the generation of optional methods of a container (since they are only
expanded if the oplist provides some methods).
+Usage of inheritance and oplist is available in the [int example](https://github.com/P-p-H-d/mlib/blob/master/example/ex-dict05.c)
+and the [cstr example](https://github.com/P-p-H-d/mlib/blob/master/example/ex-dict06.c)
+
### Advanced example