diff options
| author | Tyge Løvset <[email protected]> | 2020-12-31 21:30:51 +0100 |
|---|---|---|
| committer | Tyge Løvset <[email protected]> | 2020-12-31 21:30:51 +0100 |
| commit | 382d2fdcd7b676ee43209e158ecefeac25f657e2 (patch) | |
| tree | 9d0091990001671c501f1f374143d21dfd73b699 | |
| parent | 728cece1c43a494729e21818fdaa321af29788d2 (diff) | |
| download | STC-modified-382d2fdcd7b676ee43209e158ecefeac25f657e2.tar.gz STC-modified-382d2fdcd7b676ee43209e158ecefeac25f657e2.zip | |
Added images.
| -rw-r--r-- | docs/cdeq_api.md | 1 | ||||
| -rw-r--r-- | docs/clist_api.md | 1 | ||||
| -rw-r--r-- | docs/cmap_api.md | 1 | ||||
| -rw-r--r-- | docs/cqueue_api.md | 1 | ||||
| -rw-r--r-- | docs/cstack_api.md | 1 | ||||
| -rw-r--r-- | docs/cstr_api.md | 1 | ||||
| -rw-r--r-- | docs/cvec_api.md | 1 | ||||
| -rw-r--r-- | docs/deque.jpg | bin | 0 -> 59235 bytes | |||
| -rw-r--r-- | docs/list.jpg | bin | 0 -> 12075 bytes | |||
| -rw-r--r-- | docs/map.jpg | bin | 0 -> 121156 bytes | |||
| -rw-r--r-- | docs/queue.jpg | bin | 0 -> 49078 bytes | |||
| -rw-r--r-- | docs/stack.jpg | bin | 0 -> 71092 bytes | |||
| -rw-r--r-- | docs/string.jpg | bin | 0 -> 29250 bytes | |||
| -rw-r--r-- | docs/vector.jpg | bin | 0 -> 64200 bytes |
14 files changed, 7 insertions, 0 deletions
diff --git a/docs/cdeq_api.md b/docs/cdeq_api.md index 47a3fba9..e3ab6e6f 100644 --- a/docs/cdeq_api.md +++ b/docs/cdeq_api.md @@ -1,3 +1,4 @@ + # Container [cdeq](../stc/cdeq.h): Double Ended Queue (Deque) This describes the API of deque type **cdeq**. diff --git a/docs/clist_api.md b/docs/clist_api.md index 4958bc04..dbe2431b 100644 --- a/docs/clist_api.md +++ b/docs/clist_api.md @@ -1,3 +1,4 @@ + # Container [clist](../stc/clist.h): Singly Linked List This is similar to c++ [std::forward_list](https://en.cppreference.com/w/cpp/container/forward_list), but supports both diff --git a/docs/cmap_api.md b/docs/cmap_api.md index 9e65a69e..705c1324 100644 --- a/docs/cmap_api.md +++ b/docs/cmap_api.md @@ -1,3 +1,4 @@ + # Container [cmap](../stc/cmap.h): Unordered Map Elements are pairs of keys and mapped values. Implemented as open hashing without tombstones. Highly customizable and fast. diff --git a/docs/cqueue_api.md b/docs/cqueue_api.md index f51b78c3..4f5aa63f 100644 --- a/docs/cqueue_api.md +++ b/docs/cqueue_api.md @@ -1,3 +1,4 @@ + # Container [cqueue](../stc/cqueue.h): Queue This describes the API of the queue type **cqueue**. diff --git a/docs/cstack_api.md b/docs/cstack_api.md index 7f0c1636..20990e62 100644 --- a/docs/cstack_api.md +++ b/docs/cstack_api.md @@ -1,3 +1,4 @@ + # Container [cstack](../stc/cstack.h): Stack This describes the API of the stack type **cstack**. diff --git a/docs/cstr_api.md b/docs/cstr_api.md index 912d66a5..f612b664 100644 --- a/docs/cstr_api.md +++ b/docs/cstr_api.md @@ -1,3 +1,4 @@ + # Container [cstr](../stc/cstr.h): String This describes the API of string type **cstr_t**. diff --git a/docs/cvec_api.md b/docs/cvec_api.md index b3253935..70e1a6c0 100644 --- a/docs/cvec_api.md +++ b/docs/cvec_api.md @@ -1,3 +1,4 @@ + # Container [cvec](../stc/cvec.h): Vector This describes the API of vector type **cvec**. diff --git a/docs/deque.jpg b/docs/deque.jpg Binary files differnew file mode 100644 index 00000000..5cdcd8ca --- /dev/null +++ b/docs/deque.jpg diff --git a/docs/list.jpg b/docs/list.jpg Binary files differnew file mode 100644 index 00000000..e5e2f460 --- /dev/null +++ b/docs/list.jpg diff --git a/docs/map.jpg b/docs/map.jpg Binary files differnew file mode 100644 index 00000000..bf73af15 --- /dev/null +++ b/docs/map.jpg diff --git a/docs/queue.jpg b/docs/queue.jpg Binary files differnew file mode 100644 index 00000000..54a2cd8b --- /dev/null +++ b/docs/queue.jpg diff --git a/docs/stack.jpg b/docs/stack.jpg Binary files differnew file mode 100644 index 00000000..5fb22c5d --- /dev/null +++ b/docs/stack.jpg diff --git a/docs/string.jpg b/docs/string.jpg Binary files differnew file mode 100644 index 00000000..030b114f --- /dev/null +++ b/docs/string.jpg diff --git a/docs/vector.jpg b/docs/vector.jpg Binary files differnew file mode 100644 index 00000000..01852d39 --- /dev/null +++ b/docs/vector.jpg |
