summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorTyge Løvset <[email protected]>2021-01-02 23:13:50 +0100
committerTyge Løvset <[email protected]>2021-01-02 23:13:50 +0100
commit949c6b61cae7bb4665f47a6f27375dd450a23854 (patch)
treed4e96ff32e902e62645ed9df92951ed3f5f9ddc4
parent3a384a338654672a0ccdfa6cba101e3872775af2 (diff)
downloadSTC-modified-949c6b61cae7bb4665f47a6f27375dd450a23854.tar.gz
STC-modified-949c6b61cae7bb4665f47a6f27375dd450a23854.zip
Moved pics to subfolder.
-rw-r--r--README.md2
-rw-r--r--docs/carray_api.md2
-rw-r--r--docs/cbitset_api.md2
-rw-r--r--docs/cdeq_api.md2
-rw-r--r--docs/clist_api.md2
-rw-r--r--docs/cmap_api.md2
-rw-r--r--docs/cqueue_api.md2
-rw-r--r--docs/cset_api.md2
-rw-r--r--docs/cstack_api.md2
-rw-r--r--docs/cstr_api.md2
-rw-r--r--docs/cvec_api.md2
-rw-r--r--docs/pics/array.jpg (renamed from docs/array.jpg)bin55504 -> 55504 bytes
-rw-r--r--docs/pics/bitset.jpg (renamed from docs/bitset.jpg)bin55529 -> 55529 bytes
-rw-r--r--docs/pics/containers.jpg (renamed from docs/containers.jpg)bin96093 -> 96093 bytes
-rw-r--r--docs/pics/deque.jpg (renamed from docs/deque.jpg)bin59235 -> 59235 bytes
-rw-r--r--docs/pics/list.jpg (renamed from docs/list.jpg)bin46891 -> 46891 bytes
-rw-r--r--docs/pics/map.jpg (renamed from docs/map.jpg)bin73217 -> 73217 bytes
-rw-r--r--docs/pics/queue.jpg (renamed from docs/queue.jpg)bin43854 -> 43854 bytes
-rw-r--r--docs/pics/set.jpg (renamed from docs/set.jpg)bin19661 -> 19661 bytes
-rw-r--r--docs/pics/stack.jpg (renamed from docs/stack.jpg)bin39066 -> 39066 bytes
-rw-r--r--docs/pics/string.jpg (renamed from docs/string.jpg)bin7898 -> 7898 bytes
-rw-r--r--docs/pics/vector.jpg (renamed from docs/vector.jpg)bin49819 -> 49819 bytes
22 files changed, 11 insertions, 11 deletions
diff --git a/README.md b/README.md
index d965c0ff..c897c9d0 100644
--- a/README.md
+++ b/README.md
@@ -1,4 +1,4 @@
-![Standard Template Containers](docs/containers-small.jpg)
+![Standard Template Containers](docs/pics/containers.jpg)
STC - Standard Template Containers for C
========================================
diff --git a/docs/carray_api.md b/docs/carray_api.md
index 70dc0870..f9389b0e 100644
--- a/docs/carray_api.md
+++ b/docs/carray_api.md
@@ -1,4 +1,4 @@
-![Array](array.jpg)
+![Array](pics/array.jpg)
# Container [carray](../stc/carray.h): Dynamic 1/2/3 Dimensional Array
This is 1D, 2D and 3D arrays, which are allocated from heap in one single contiguous block of memory.
diff --git a/docs/cbitset_api.md b/docs/cbitset_api.md
index 7da433b2..be4bb4bc 100644
--- a/docs/cbitset_api.md
+++ b/docs/cbitset_api.md
@@ -1,4 +1,4 @@
-![Bitset](bitset.jpg)
+![Bitset](pics/bitset.jpg)
# Container [cbitset](../stc/cbitset.h): Bitset
This describes the API of type **cbitset**. See [std::bitset](https://en.cppreference.com/w/cpp/utility/bitset) or
diff --git a/docs/cdeq_api.md b/docs/cdeq_api.md
index 2ba49df4..12c2ffaf 100644
--- a/docs/cdeq_api.md
+++ b/docs/cdeq_api.md
@@ -1,4 +1,4 @@
-![Deque](deque.jpg)
+![Deque](pics/deque.jpg)
# Container [cdeq](../stc/cdeq.h): Double Ended Queue (Deque)
A **cdeq** is an indexed sequence container that allows fast insertion and deletion at both its beginning and its end.
diff --git a/docs/clist_api.md b/docs/clist_api.md
index 3cdd948b..437b0321 100644
--- a/docs/clist_api.md
+++ b/docs/clist_api.md
@@ -1,4 +1,4 @@
-![List](list.jpg)
+![List](pics/list.jpg)
# Container [clist](../stc/clist.h): Forward 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 24c82dc0..da31237b 100644
--- a/docs/cmap_api.md
+++ b/docs/cmap_api.md
@@ -1,4 +1,4 @@
-![Map](map.jpg)
+![Map](pics/map.jpg)
# Container [cmap](../stc/cmap.h): Unordered Map
A **cmap** is an associative container that contains key-value pairs with unique keys. Search, insertion, and removal of elements have average constant-time complexity.
diff --git a/docs/cqueue_api.md b/docs/cqueue_api.md
index 9a4a9939..3a3da26b 100644
--- a/docs/cqueue_api.md
+++ b/docs/cqueue_api.md
@@ -1,4 +1,4 @@
-![Queue](queue.jpg)
+![Queue](pics/queue.jpg)
# Container [cqueue](../stc/cqueue.h): Queue
This describes the API of the queue type **cqueue**.
diff --git a/docs/cset_api.md b/docs/cset_api.md
index 2c2f8b22..995cc95a 100644
--- a/docs/cset_api.md
+++ b/docs/cset_api.md
@@ -1,4 +1,4 @@
-![Set](set.jpg)
+![Set](pics/set.jpg)
# Container [cset](../stc/cmap.h): Unordered Set
A **cset** is an associative container that contains a set of unique objects of type Key. Search, insertion, and removal have average constant-time complexity. See [std::unordered_set](https://en.cppreference.com/w/cpp/container/unordered_set) for a similar c++ class.
diff --git a/docs/cstack_api.md b/docs/cstack_api.md
index a52efe40..7d75ecdf 100644
--- a/docs/cstack_api.md
+++ b/docs/cstack_api.md
@@ -1,4 +1,4 @@
-![Stack](stack.jpg)
+![Stack](pics/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 99bd9136..4ea5de64 100644
--- a/docs/cstr_api.md
+++ b/docs/cstr_api.md
@@ -1,4 +1,4 @@
-![String](string.jpg)
+![String](pics/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 e5156d09..054aa8b9 100644
--- a/docs/cvec_api.md
+++ b/docs/cvec_api.md
@@ -1,4 +1,4 @@
-![Vector](vector.jpg)
+![Vector](pics/vector.jpg)
# Container [cvec](../stc/cvec.h): Vector
A **cvec** is a sequence container that encapsulates dynamic size arrays.
diff --git a/docs/array.jpg b/docs/pics/array.jpg
index 4aede261..4aede261 100644
--- a/docs/array.jpg
+++ b/docs/pics/array.jpg
Binary files differ
diff --git a/docs/bitset.jpg b/docs/pics/bitset.jpg
index 7445a6c2..7445a6c2 100644
--- a/docs/bitset.jpg
+++ b/docs/pics/bitset.jpg
Binary files differ
diff --git a/docs/containers.jpg b/docs/pics/containers.jpg
index cc56a141..cc56a141 100644
--- a/docs/containers.jpg
+++ b/docs/pics/containers.jpg
Binary files differ
diff --git a/docs/deque.jpg b/docs/pics/deque.jpg
index 5cdcd8ca..5cdcd8ca 100644
--- a/docs/deque.jpg
+++ b/docs/pics/deque.jpg
Binary files differ
diff --git a/docs/list.jpg b/docs/pics/list.jpg
index 6e642696..6e642696 100644
--- a/docs/list.jpg
+++ b/docs/pics/list.jpg
Binary files differ
diff --git a/docs/map.jpg b/docs/pics/map.jpg
index 6de936d9..6de936d9 100644
--- a/docs/map.jpg
+++ b/docs/pics/map.jpg
Binary files differ
diff --git a/docs/queue.jpg b/docs/pics/queue.jpg
index 43477c9a..43477c9a 100644
--- a/docs/queue.jpg
+++ b/docs/pics/queue.jpg
Binary files differ
diff --git a/docs/set.jpg b/docs/pics/set.jpg
index dfad52dd..dfad52dd 100644
--- a/docs/set.jpg
+++ b/docs/pics/set.jpg
Binary files differ
diff --git a/docs/stack.jpg b/docs/pics/stack.jpg
index 365a2b3e..365a2b3e 100644
--- a/docs/stack.jpg
+++ b/docs/pics/stack.jpg
Binary files differ
diff --git a/docs/string.jpg b/docs/pics/string.jpg
index f37416b1..f37416b1 100644
--- a/docs/string.jpg
+++ b/docs/pics/string.jpg
Binary files differ
diff --git a/docs/vector.jpg b/docs/pics/vector.jpg
index 125e8504..125e8504 100644
--- a/docs/vector.jpg
+++ b/docs/pics/vector.jpg
Binary files differ