summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorTyge Løvset <[email protected]>2020-12-31 21:30:51 +0100
committerTyge Løvset <[email protected]>2020-12-31 21:30:51 +0100
commit382d2fdcd7b676ee43209e158ecefeac25f657e2 (patch)
tree9d0091990001671c501f1f374143d21dfd73b699
parent728cece1c43a494729e21818fdaa321af29788d2 (diff)
downloadSTC-modified-382d2fdcd7b676ee43209e158ecefeac25f657e2.tar.gz
STC-modified-382d2fdcd7b676ee43209e158ecefeac25f657e2.zip
Added images.
-rw-r--r--docs/cdeq_api.md1
-rw-r--r--docs/clist_api.md1
-rw-r--r--docs/cmap_api.md1
-rw-r--r--docs/cqueue_api.md1
-rw-r--r--docs/cstack_api.md1
-rw-r--r--docs/cstr_api.md1
-rw-r--r--docs/cvec_api.md1
-rw-r--r--docs/deque.jpgbin0 -> 59235 bytes
-rw-r--r--docs/list.jpgbin0 -> 12075 bytes
-rw-r--r--docs/map.jpgbin0 -> 121156 bytes
-rw-r--r--docs/queue.jpgbin0 -> 49078 bytes
-rw-r--r--docs/stack.jpgbin0 -> 71092 bytes
-rw-r--r--docs/string.jpgbin0 -> 29250 bytes
-rw-r--r--docs/vector.jpgbin0 -> 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 @@
+![Deque](docs/deque.jpg)
# 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 @@
+![List](docs/list.jpg)
# 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 @@
+![Map](docs/map.jpg)
# 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 @@
+![Queue](docs/queue.jpg)
# 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 @@
+![Stack](docs/stack.jpg)
# 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 @@
+![String](docs/string.jpg)
# 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 @@
+![Vector](docs/vector.jpg)
# Container [cvec](../stc/cvec.h): Vector
This describes the API of vector type **cvec**.
diff --git a/docs/deque.jpg b/docs/deque.jpg
new file mode 100644
index 00000000..5cdcd8ca
--- /dev/null
+++ b/docs/deque.jpg
Binary files differ
diff --git a/docs/list.jpg b/docs/list.jpg
new file mode 100644
index 00000000..e5e2f460
--- /dev/null
+++ b/docs/list.jpg
Binary files differ
diff --git a/docs/map.jpg b/docs/map.jpg
new file mode 100644
index 00000000..bf73af15
--- /dev/null
+++ b/docs/map.jpg
Binary files differ
diff --git a/docs/queue.jpg b/docs/queue.jpg
new file mode 100644
index 00000000..54a2cd8b
--- /dev/null
+++ b/docs/queue.jpg
Binary files differ
diff --git a/docs/stack.jpg b/docs/stack.jpg
new file mode 100644
index 00000000..5fb22c5d
--- /dev/null
+++ b/docs/stack.jpg
Binary files differ
diff --git a/docs/string.jpg b/docs/string.jpg
new file mode 100644
index 00000000..030b114f
--- /dev/null
+++ b/docs/string.jpg
Binary files differ
diff --git a/docs/vector.jpg b/docs/vector.jpg
new file mode 100644
index 00000000..01852d39
--- /dev/null
+++ b/docs/vector.jpg
Binary files differ