diff --git a/docs/functions/core/llist/why2_list_push.md b/docs/functions/core/llist/why2_list_push.md new file mode 100644 index 0000000..6a19d7b --- /dev/null +++ b/docs/functions/core/llist/why2_list_push.md @@ -0,0 +1,39 @@ + + +# why2_list_push + +## Parameters + +| Identifier | Data type | +| ---------- | ----------------------------------------------------------- | +| `list` | [`why2_list_t *`](../../../../types/core/llist/why2_list_t) | +| `value` | `void *` | +| `size` | `unsigned long` | + +## Attributes + +| | | +| ------------------ | --------------------------------------------------------------------- | +| **Return type** | `void` | +| **Header comment** | `PUSH ELEMENT TO LIST BACK` | +| **Added in commit** | [`10632e00703f0935d963c1e2133940c061eb8ed3`](https://github.com/ENGO150/WHY2/commit/10632e00703f0935d963c1e2133940c061eb8ed3) | + +## Description + +Function appends new node containing `value` of `size` to the back of linked-list (`list`). \ No newline at end of file diff --git a/docs/functions/index.md b/docs/functions/index.md index 8d885a0..581d412 100644 --- a/docs/functions/index.md +++ b/docs/functions/index.md @@ -72,6 +72,12 @@ You can find documentation for every *public* function of WHY2 below. | [`why2_set_padding`](./core/flags/setters/why2_set_padding) | Set padding rate without rewriting input flags | | [`why2_reset_memory_identifier`](./core/flags/setters/why2_reset_memory_identifier) | *This functions doesn't have any description.* | +### Linked-list + +| Function | Description | +| ----------------------------------------------------- | ----------------------------------- | +| [`why2_list_push`](./core/llist/why2_list_push) | Push element to list back | + ## Logger ## Chat \ No newline at end of file