added missing explanation to llist-files
This commit is contained in:
parent
b8c9df87da
commit
2e29a34073
@ -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.
|
@ -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.
|
@ -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.
|
Loading…
x
Reference in New Issue
Block a user