From a285bfb891ea00df8ab5cbb21f899ce9ced5f460 Mon Sep 17 00:00:00 2001 From: Tyge Løvset Date: Mon, 4 Jan 2021 18:25:44 +0100 Subject: Simplified: Removed CONTAINER_input_t type, replaced with CONTAINER_rawvalue_t --- docs/cqueue_api.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'docs/cqueue_api.md') diff --git a/docs/cqueue_api.md b/docs/cqueue_api.md index 721b2069..f5fe3f21 100644 --- a/docs/cqueue_api.md +++ b/docs/cqueue_api.md @@ -20,7 +20,6 @@ will affect the names of all cqueue types and methods. E.g. declaring `using_cqu |:----------------------|:---------------------------------------|:-------------------------| | `cqueue_X` | Depends on underlying container type | The cqueue type | | `cqueue_X_value_t` | " | The cqueue element type | -| `cqueue_X_input_t` | " | cqueue input type | | `cqueue_X_rawvalue_t` | " | cqueue raw value type | | `cqueue_X_iter_t` | " | cqueue iterator | @@ -44,7 +43,7 @@ bool cqueue_X_empty(cqueue_X q); cqueue_X_value_t* cqueue_X_front(cqueue_X* self); cqueue_X_value_t* cqueue_X_back(cqueue_X* self); -void cqueue_X_push_n(cqueue_X *self, const cqueue_X_input_t arr[], size_t size); +void cqueue_X_push_n(cqueue_X *self, const cqueue_X_rawvalue_t arr[], size_t size); void cqueue_X_emplace(cqueue_X* self, cqueue_X_rawvalue_t raw); void cqueue_X_push(cqueue_X* self, cqueue_X_value_t value); void cqueue_X_pop(cqueue_X* self); -- cgit v1.2.3