diff options
| author | Tyge Løvset <[email protected]> | 2020-06-24 21:16:20 +0200 |
|---|---|---|
| committer | GitHub <[email protected]> | 2020-06-24 21:16:20 +0200 |
| commit | ee23930e20cddee2bb438db9c5ce30aefdbe5099 (patch) | |
| tree | f840773dbfa9a5b2d5554be6ba95762f24486745 | |
| parent | 45a7c48d7ef1b3d293b325c147e0e6c2362571f1 (diff) | |
| download | STC-modified-ee23930e20cddee2bb438db9c5ce30aefdbe5099.tar.gz STC-modified-ee23930e20cddee2bb438db9c5ce30aefdbe5099.zip | |
Update README.md
| -rw-r--r-- | README.md | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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"
|
