6 /* ---------------------------- included header files ---------------------- */
8 /* ---------------------------- global definitions ------------------------- */
10 /* ---------------------------- global macros ------------------------------ */
12 /* ---------------------------- type definitions --------------------------- */
21 /* ---------------------------- exported variables (globals) --------------- */
23 /* ---------------------------- interface functions ------------------------ */
25 flist
*flist_append_obj(flist
*list
, void *object
);
26 flist
*flist_prepend_obj(flist
*list
, void *object
);
27 flist
*flist_insert_obj(flist
*list
, void *object
, int position
);
28 flist
*flist_remove_obj(flist
*list
, void *object
);
29 flist
*flist_free_list(flist
*list
);