added missing explanation to llist-files

This commit is contained in:
Václav Šmejkal 2025-01-25 20:42:50 +01:00
parent b8c9df87da
commit 2e29a34073
Signed by: ENGO150
GPG Key ID: 4A57E86482968843
3 changed files with 3 additions and 3 deletions

View File

@ -35,4 +35,4 @@ along with this program. If not, see <https://www.gnu.org/licenses/>.
## Description
Finds node containing `value` and returns pointer to it. If no match is found, `NULL` is returned.
Finds node in linked-list (`list`) containing `value` and returns pointer to it. If no match is found, `NULL` is returned.

View File

@ -34,4 +34,4 @@ along with this program. If not, see <https://www.gnu.org/licenses/>.
## Description
Calculates size of `list` (how many nodes are present) and returns it.
Calculates size of linked-list (`list`) (how many nodes are present) and returns it.

View File

@ -35,4 +35,4 @@ along with this program. If not, see <https://www.gnu.org/licenses/>.
## Description
Reverses node order in `list`. `size` is size of nodes in `list`, because of the reallocations.
Reverses node order in linked-list (`list`). `size` is size of nodes in `list`, because of the reallocations.