Functions | |
| EAPI int | ecore_dlist_append (Ecore_DList *list, void *data) |
| Appends data to the given doubly linked list. | |
| EAPI int | ecore_dlist_prepend (Ecore_DList *list, void *data) |
| Adds data to the very beginning of the given doubly linked list. | |
| EAPI int | ecore_dlist_insert (Ecore_DList *list, void *data) |
| Inserts data at the current point in the given doubly linked list. | |
| EAPI int | ecore_dlist_append_list (Ecore_DList *list, Ecore_DList *append) |
| Appends a list to the given doubly linked list. | |
| EAPI int | ecore_dlist_prepend_list (Ecore_DList *list, Ecore_DList *prepend) |
| Adds a list to the very beginning of the given doubly linked list. | |
| EAPI int ecore_dlist_append | ( | Ecore_DList * | list, | |
| void * | data | |||
| ) |
Appends data to the given doubly linked list.
| list | The given doubly linked list. | |
| data | The data to append. |
TRUE if the data is successfully appended, FALSE otherwise. | EAPI int ecore_dlist_append_list | ( | Ecore_DList * | list, | |
| Ecore_DList * | append | |||
| ) |
Appends a list to the given doubly linked list.
| list | The given doubly linked list. | |
| append | The list to append. |
TRUE if the data is successfully appended, FALSE otherwise. | EAPI int ecore_dlist_insert | ( | Ecore_DList * | list, | |
| void * | data | |||
| ) |
Inserts data at the current point in the given doubly linked list.
| list | The given doubly linked list. | |
| data | The data to be inserted. |
TRUE on success, FALSE otherwise. | EAPI int ecore_dlist_prepend | ( | Ecore_DList * | list, | |
| void * | data | |||
| ) |
Adds data to the very beginning of the given doubly linked list.
| list | The given doubly linked list. | |
| data | The data to prepend. |
TRUE if the data is successfully prepended, FALSE otherwise. | EAPI int ecore_dlist_prepend_list | ( | Ecore_DList * | list, | |
| Ecore_DList * | prepend | |||
| ) |
Adds a list to the very beginning of the given doubly linked list.
| list | The given doubly linked list. | |
| prepend | The list to prepend. |
TRUE if the data is successfully prepended, FALSE otherwise.