diff options
| author | Tyge Løvset <[email protected]> | 2020-06-20 21:49:29 +0200 |
|---|---|---|
| committer | GitHub <[email protected]> | 2020-06-20 21:49:29 +0200 |
| commit | ff299f2de10fc84f089c0e59bd1702ed4b75c87a (patch) | |
| tree | dcf4e15fbb3a55d7b9fe6505b9eb564794538a81 | |
| parent | f4ea94c315716b51227132927643d22182b6e94a (diff) | |
| download | STC-modified-ff299f2de10fc84f089c0e59bd1702ed4b75c87a.tar.gz STC-modified-ff299f2de10fc84f089c0e59bd1702ed4b75c87a.zip | |
Update README.md
| -rw-r--r-- | README.md | 12 |
1 files changed, 6 insertions, 6 deletions
@@ -42,7 +42,7 @@ declare_CHash(64, set, int64_t); Usage by examples
-----------------
-CString demo
+**CString** *demo*
```
#include <stc/cstring.h>
@@ -68,7 +68,7 @@ int main() { cstring_destroy(&cs);
}
```
-Simple CVector of 64bit int
+**CVector** of *int64_t*
```
#include <stc/cvector.h>
declare_CVector(ix, int64_t); // ix is just an example tag name, use anything without underscore.
@@ -86,7 +86,7 @@ int main() { cvector_ix_destroy(&bignums);
}
```
-CVector of CString
+**CVector** of *CString*
```
#include <stc/cstring.h>
#include <stc/cvector.h>
@@ -102,7 +102,7 @@ int main() { cvector_cs_destroy(&names);
}
```
-CHash map of int -> int
+**CHash map** of *int -> int*
```
#include <stc/cmap.h>
declare_CHash(ii, map, int, int);
@@ -116,7 +116,7 @@ int main() { chash_ii_destroy(&nums);
}
```
-CHash set of CString
+**CHash set** of *CString*
```
#include <stc/cstring.h>
#include <stc/cmap.h>
@@ -135,7 +135,7 @@ int main() { chash_s_destroy(&words);
}
```
-CHash map of CString -> CString. Temporary CString values are created by "make", and moved to the container
+**CHash map** of *CString -> CString*. Temporary CString values are created by "make", and moved to the container
```
#include <stc/cstring.h>
#include <stc/cmap.h>
|
