From dd9daa718db4f7540c5cf00fde022a2b121ffc41 Mon Sep 17 00:00:00 2001 From: davidhozic Date: Tue, 13 Jul 2021 19:01:24 +0200 Subject: [PATCH] Update README.md --- README.md | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index e89dad0..9bb5af7 100644 --- a/README.md +++ b/README.md @@ -52,7 +52,12 @@ LINKED LIST FUNCTIONS * RETURN: void ------------------------------------------------------------------------------------------- + * FUNCTION: add() + * PARAMETERS: uint32_t index, custom type data + * DESCRIPTION: adds element to the specified index + * RETURN: void +------------------------------------------------------------------------------------------- * FUNCTION: sort() * PARAMETERS: int function_comparator_function (must return < 0 if element 1 is before element 2) @@ -97,13 +102,13 @@ LINKED LIST FUNCTIONS * RETURN: custom_type ------------------------------------------------------------------------------------------- - * FUNCTION: clone + * FUNCTION: clone() * PARAMETERS: List of same type * DESCRIPTION: copies data from a different list to current list * RETURN: void ------------------------------------------------------------------------------------------- - * FUNCTION: pop + * FUNCTION: pop () * PARAMETERS: index of element to pop * DESCRIPTION: Removes the element at index and returns it * RETURN: custom data type element at index