added ase_sll_init() and ase_sll_fini()

This commit is contained in:
2008-09-01 05:15:57 +00:00
parent 8a219e1548
commit cb5e20a885
2 changed files with 24 additions and 6 deletions

View File

@ -101,6 +101,15 @@ void ase_sll_close (
ase_sll_t* sll /* a singly linked list */
);
ase_sll_t* ase_sll_init (
ase_sll_t* sll /* an uninitialized singly linked list */,
ase_mmgr_t* mmgr /* memory manager */
);
void ase_sll_fini (
ase_sll_t* sll /* a singly linked list */
);
/*
* NAME: deletes all elements of a singly linked list
*/