1c1fe1fd94
* Move most of the USB access code from xpp/ to xpp/xtalk/ . * astribank_tool and such tools can now use a shorter -D mmm/nnn rather than a full path. Signed-off-by: Oron Peled <oron.peled@xorcom.com> Acked-by: Tzafrir Cohen <tzafrir.cohen@xorcom.com> git-svn-id: http://svn.astersk.org/svn/dahdi/tools/trunk@9825 17933a7a-c749-41c5-a318-cba88f637d49
30 lines
698 B
C
30 lines
698 B
C
#ifndef XLIST_H
|
|
#define XLIST_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C"
|
|
{
|
|
#endif /* __cplusplus */
|
|
|
|
struct xlist_node {
|
|
void *data;
|
|
struct xlist_node *next;
|
|
struct xlist_node *prev;
|
|
};
|
|
|
|
typedef void (*xlist_destructor_t)(void *data);
|
|
|
|
struct xlist_node *xlist_new(void *data);
|
|
void xlist_destroy(struct xlist_node *list, xlist_destructor_t destructor);
|
|
void xlist_append_item(struct xlist_node *list, struct xlist_node *item);
|
|
void xlist_remove_item(struct xlist_node *item);
|
|
struct xlist_node *xlist_shift(struct xlist_node *list);
|
|
int xlist_empty(const struct xlist_node *list);
|
|
size_t xlist_length(const struct xlist_node *list);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif /* __cplusplus */
|
|
|
|
#endif /* XLIST_H */
|