(BTStack) Cleanup

This commit is contained in:
Twinaphex 2015-04-02 19:38:37 +02:00
parent 3aa6c8e324
commit 38204f5c26

View File

@ -35,14 +35,14 @@
#if defined __cplusplus
extern "C" {
#endif
typedef linked_item_t * linked_list_t;
typedef struct linked_item
{
struct linked_item *next; /* <-- next element in list, or NULL */
void *user_data; /* <-- pointer to struct base */
} linked_item_t;
typedef linked_item_t *linked_list_t;
void linked_item_set_user(linked_item_t *item, void *user_data); /* <-- set user data */