Functions | |
EAPI int | ecore_list_append (Ecore_List *list, void *data) |
Append data to the list. | |
EAPI int | ecore_list_prepend (Ecore_List *list, void *data) |
Prepend data to the beginning of the list. | |
EAPI int | ecore_list_insert (Ecore_List *list, void *data) |
Insert data in front of the current point in the list. | |
EAPI int | ecore_list_append_list (Ecore_List *list, Ecore_List *append) |
Append a list to the list. | |
EAPI int | ecore_list_prepend_list (Ecore_List *list, Ecore_List *prepend) |
Prepend a list to the beginning of the list. |
EAPI int ecore_list_append | ( | Ecore_List * | list, | |
void * | data | |||
) | [inline] |
Append data to the list.
list | The list. | |
data | The data to append. |
FALSE
if an error occurs, TRUE
if appended successfully EAPI int ecore_list_append_list | ( | Ecore_List * | list, | |
Ecore_List * | append | |||
) |
Append a list to the list.
list | The list. | |
append | The list to append. |
FALSE
if an error occurs, TRUE
if appended successfully EAPI int ecore_list_insert | ( | Ecore_List * | list, | |
void * | data | |||
) | [inline] |
Insert data in front of the current point in the list.
list | The list to hold the inserted data . | |
data | The data to insert into list . |
FALSE
if there is an error, TRUE
on success EAPI int ecore_list_prepend | ( | Ecore_List * | list, | |
void * | data | |||
) | [inline] |
Prepend data to the beginning of the list.
list | The list. | |
data | The data to prepend. |
FALSE
if an error occurs, TRUE
if prepended successfully. EAPI int ecore_list_prepend_list | ( | Ecore_List * | list, | |
Ecore_List * | prepend | |||
) |
Prepend a list to the beginning of the list.
list | The list. | |
prepend | The list to prepend. |
FALSE
if an error occurs, TRUE
if prepended successfully.