Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
davidhozic authored Jul 13, 2021
1 parent 5958c6b commit dd9daa7
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit dd9daa7

Please sign in to comment.