"this" removed from comments.
This commit is contained in:
@@ -68,7 +68,6 @@ struct iterator_t {
|
||||
*
|
||||
* The iterator position is not changed after inserting.
|
||||
*
|
||||
* @param this calling iterator
|
||||
* @param item value to insert in list
|
||||
*/
|
||||
void (*insert_after) (iterator_t *this, void *item);
|
||||
@@ -78,7 +77,6 @@ struct iterator_t {
|
||||
*
|
||||
* The iterator position is not changed after replacing.
|
||||
*
|
||||
* @param this calling iterator
|
||||
* @param old old value will be written here(can be NULL)
|
||||
* @param new new value
|
||||
* @return SUCCESS, FAILED if iterator is on an invalid position
|
||||
|
||||
@@ -161,7 +161,6 @@ struct linked_list_t {
|
||||
/**
|
||||
* Returns the value of the first list item without removing it.
|
||||
*
|
||||
* @param this calling object
|
||||
* @param item returned value of first item
|
||||
* @return SUCCESS, NOT_FOUND if list is empty
|
||||
*/
|
||||
@@ -177,7 +176,6 @@ struct linked_list_t {
|
||||
/**
|
||||
* Removes the last item in the list and returns its value.
|
||||
*
|
||||
* @param this calling object
|
||||
* @param item returned value of last item, or NULL
|
||||
* @return SUCCESS, NOT_FOUND if list is empty
|
||||
*/
|
||||
@@ -186,7 +184,6 @@ struct linked_list_t {
|
||||
/**
|
||||
* Returns the value of the last list item without removing it.
|
||||
*
|
||||
* @param this calling object
|
||||
* @param item returned value of last item
|
||||
* @return SUCCESS, NOT_FOUND if list is empty
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user