From fbfb57d46e4d042c2c5ae1c5a56dad00660d3e3b Mon Sep 17 00:00:00 2001 From: Tyge Løvset Date: Tue, 21 Sep 2021 20:49:22 +0200 Subject: Added copy(self, other) function to all containers. Fixed some docs. --- docs/cstack_api.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'docs/cstack_api.md') diff --git a/docs/cstack_api.md b/docs/cstack_api.md index 7cdfe019..cd230508 100644 --- a/docs/cstack_api.md +++ b/docs/cstack_api.md @@ -17,7 +17,7 @@ See the c++ class [std::stack](https://en.cppreference.com/w/cpp/container/stack #define i_valdel // destroy value func - defaults to empty destruct #include ``` -`X` should be replaced by the value of ***i_tag*** in all of the following documentation. +`X` should be replaced by the value of `i_tag` in all of the following documentation. ## Methods @@ -26,6 +26,7 @@ cstack_X cstack_X_init(void); cstack_X cstack_X_clone(cstack_X st); void cstack_X_clear(cstack_X* self); +void cstack_X_copy(cstack_X* self, cstack_X other); void cstack_X_del(cstack_X* self); // destructor size_t cstack_X_size(cstack_X st); -- cgit v1.2.3