Functions | |
| EAPI void * | ecore_list_remove (Ecore_List *list) |
| Remove the current item from the list. | |
| EAPI int | ecore_list_remove_destroy (Ecore_List *list) |
| Remove and free the data in lists current position. | |
| EAPI void * | ecore_list_first_remove (Ecore_List *list) |
| Remove the first item from the list. | |
| EAPI void * | ecore_list_last_remove (Ecore_List *list) |
| Remove the last item from the list. | |
| EAPI void* ecore_list_first_remove | ( | Ecore_List * | list | ) | [inline] |
Remove the first item from the list.
| list | The list to remove the current item |
NULL on failure. | EAPI void* ecore_list_last_remove | ( | Ecore_List * | list | ) | [inline] |
Remove the last item from the list.
| list | The list to remove the last node from |
NULL on failure. | EAPI void* ecore_list_remove | ( | Ecore_List * | list | ) | [inline] |
Remove the current item from the list.
| list | The list to remove the current item |
NULL on failure. | EAPI int ecore_list_remove_destroy | ( | Ecore_List * | list | ) |
Remove and free the data in lists current position.
| list | The list to remove and free the current item. |
TRUE on success, FALSE on error