libosip
5.3.0
|
oSIP list Routines More...
Go to the source code of this file.
Classes | |
struct | osip_list_iterator |
struct | osip_list |
Macros | |
#define | osip_list_iterator_has_elem(it) (0 != (it).actual && (it).pos < (it).li->nb_elt) |
Typedefs | |
typedef struct osip_list | osip_list_t |
typedef struct osip_list_iterator | osip_list_iterator_t |
Functions | |
int | osip_list_init (osip_list_t *li) |
void | osip_list_special_free (osip_list_t *li, void(*free_func)(void *)) |
int | osip_list_clone (const osip_list_t *src, osip_list_t *dst, int(*clone_func)(void *, void **)) |
void | osip_list_ofchar_free (osip_list_t *li) |
int | osip_list_size (const osip_list_t *li) |
int | osip_list_eol (const osip_list_t *li, int pos) |
int | osip_list_add (osip_list_t *li, void *element, int pos) |
void * | osip_list_get (const osip_list_t *li, int pos) |
int | osip_list_remove (osip_list_t *li, int pos) |
void * | osip_list_get_first (const osip_list_t *li, osip_list_iterator_t *it) |
void * | osip_list_get_next (osip_list_iterator_t *it) |
void * | osip_list_iterator_remove (osip_list_iterator_t *it) |
oSIP list Routines
This is a simple implementation of a linked list.