Introduction - If you have any usage issues, please Google them yourself
typedef int llist_cmp(const void*, const void*)
typedef void llist_op(void*)
typedef void LLIST
LLIST*llist_creat(int size)
void llist_destroy(LLIST*)
int llist_prepend(LLIST*, void*)
int llist_append(LLIST*, void*)
void llist_delet(LLIST*, void*, llist_cmp*cmp)
void*llist_find(LLIST*, void*, llist_cmp*cmp)
void llist_travel(LLIST*, llist_op*op)