summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorTyge Løvset <[email protected]>2020-06-24 21:16:20 +0200
committerGitHub <[email protected]>2020-06-24 21:16:20 +0200
commitee23930e20cddee2bb438db9c5ce30aefdbe5099 (patch)
treef840773dbfa9a5b2d5554be6ba95762f24486745
parent45a7c48d7ef1b3d293b325c147e0e6c2362571f1 (diff)
downloadSTC-modified-ee23930e20cddee2bb438db9c5ce30aefdbe5099.tar.gz
STC-modified-ee23930e20cddee2bb438db9c5ce30aefdbe5099.zip
Update README.md
-rw-r--r--README.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/README.md b/README.md
index 38691046..4863bd51 100644
--- a/README.md
+++ b/README.md
@@ -11,8 +11,8 @@ An elegant, typesafe, generic, customizable, user-friendly, consistent, and very
- **carray.h** - Multi-dimensional dynamic **array**, implemented as a single contiguous section of memory.
- **clist.h** - A circular singly **linked list**, can be used as a **queue** - supports *pushBack, pushFront, and popFront* in *O*(1). Also contains various *splice* functions and (merge) *sort*.
- **coption.h** - Implementation of *getopt_long*-"like" function, *coption_get*, to parse command line arguments.
-- **crandom.h** - A few efficent modern random number generators *pgc32* and *sfc64*. It also implements the crypto-strong *siphash* algorithm.
-- **cdefs.h** - A small common include file with central definitions.
+- **crandom.h** - A few very efficent modern random number generators *pcg32* and *sfc64*. It also implements the crypto-strong *siphash* algorithm.
+- **cdefs.h** - A small common include file with some general definitions.
The usage of the containers is similar to the C++ standard containers, so it should be easier for those who are familiar with them.
@@ -303,7 +303,7 @@ int main() {
clist_i_destroy(&list);
}
```
-**CArray**. 1D, 2D and 3D arrays, heap allocated in one memory block. CArray3 can make sub-array "views" CArray2 and CArray1 into CArray3, and CArray2 can further make CArray1 "views", as shown in the folling example.
+**CArray**. 1D, 2D and 3D arrays, heap allocated in one memory block. *CArray3* can have sub-array "views" of *CArray2* and *CArray1* etc., as shown in the following example.
```
#include <stdio.h>
#include "stc/carray.h"