__alpm_list_t

@brief Linked list type used by libalpm.

It is exposed so front ends can use it to prevent the need to reimplement lists of their own; however, it is not required that the front end uses it.

extern (C)
struct __alpm_list_t {}

Members

Variables

data
void* data;

data held by the list node

next
__alpm_list_t* next;

pointer to the next node

prev
__alpm_list_t* prev;

pointer to the previous node

Meta