diff --git a/docs/functions/core/llist/why2_list_remove_back.md b/docs/functions/core/llist/why2_list_remove_back.md new file mode 100644 index 0000000..e5c1f81 --- /dev/null +++ b/docs/functions/core/llist/why2_list_remove_back.md @@ -0,0 +1,37 @@ + + +# why2_list_remove_back + +## Parameters + +| Identifier | Data type | +| ---------- | ----------------------------------------------------------- | +| `list` | [`why2_list_t *`](../../../../types/core/llist/why2_list_t) | + +## Attributes + +| | | +| ------------------ | --------------------------------------------------------------------- | +| **Return type** | `void` | +| **Header comment** | `REMOVE LAST ELEMENT` | +| **Added in commit** | [`acee29c374353447c8e3bcce7c26000a991e2f6f`](https://github.com/ENGO150/WHY2/commit/acee29c374353447c8e3bcce7c26000a991e2f6f) | + +## Description + +Removes last node from linked-list (`list`). \ No newline at end of file diff --git a/docs/functions/index.md b/docs/functions/index.md index a359a51..956c512 100644 --- a/docs/functions/index.md +++ b/docs/functions/index.md @@ -74,12 +74,13 @@ You can find documentation for every *public* function of WHY2 below. ### Linked-list -| Function | Description | -| --------------------------------------------------------- | ----------------------------------- | -| [`why2_list_push`](./core/llist/why2_list_push) | Push element to list back | -| [`why2_list_push_at`](./core/llist/why2_list_push_at) | Push element to index index of list | -| [`why2_list_remove`](./core/llist/why2_list_remove) | Remove element | -| [`why2_list_remove_at`](./core/llist/why2_list_remove_at) | Remove element with index index | +| Function | Description | +| ------------------------------------------------------------- | ----------------------------------- | +| [`why2_list_push`](./core/llist/why2_list_push) | Push element to list back | +| [`why2_list_push_at`](./core/llist/why2_list_push_at) | Push element to index index of list | +| [`why2_list_remove`](./core/llist/why2_list_remove) | Remove element | +| [`why2_list_remove_at`](./core/llist/why2_list_remove_at) | Remove element with index index | +| [`why2_list_remove_back`](./core/llist/why2_list_remove_back) | Remove last element | ## Logger