From d82bec0a4dc6632961442e01094e455f0e92b78e Mon Sep 17 00:00:00 2001 From: Tyge Løvset <60263450+tylov@users.noreply.github.com> Date: Mon, 22 Jun 2020 23:39:18 +0200 Subject: Update README.md --- README.md | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) (limited to 'README.md') diff --git a/README.md b/README.md index 7abae26d..1e17a311 100644 --- a/README.md +++ b/README.md @@ -166,7 +166,7 @@ int main() { ``` **CString** ``` -#include +#include "stc/cstring.h" int main() { CString s1 = cstring_make("one-nine-three-seven-five"); @@ -194,7 +194,7 @@ int main() { ``` **CVector** of *int64_t* ``` -#include +#include "stc/cvector.h" declare_CVector(ix, int64_t); // ix is just an example tag name, use anything without underscore. int main() { @@ -212,8 +212,8 @@ int main() { ``` **CVector** of *CString* ``` -#include -#include +#include "stc/cstring.h" +#include "stc/cvector.h" declare_CVector_string(cs); int main() { @@ -228,7 +228,8 @@ int main() { ``` **CHash map** of *int -> int* ``` -#include +#include +#include "stc/chash.h" declare_CHash(ii, MAP, int, int); int main() { @@ -242,8 +243,8 @@ int main() { ``` **CHash set** of *CString* ``` -#include -#include +#include "stc/cstring.h" +#include "stc/chash.h" declare_CHash_string(s, SET); // See the discussion above regarding this declaration. int main() { @@ -260,8 +261,8 @@ int main() { ``` **CHash map** of *CString -> CString*. Temporary CString values are created by *cstring_make()*, and moved into the container ``` -#include -#include +#include "stc/cstring.h" +#include "stc/chash.h" declare_CHash_string(ss, MAP, CString, cstring_destroy); int main() { -- cgit v1.2.3