Simple data structures / objects in plain C Snapshot
Classes | Typedefs
SLIST_entry

an entry in single linked list, add to structure as member in order to make structure storable in hash table. If the user wants to link his struct(ure) into a SLIST linked list, then he must embed a DLIST_entry into his structure. Access to user defined structure is via embedded SLIST_entry. More...

Classes

struct  tagSLIST_entry

Typedefs

typedef struct tagSLIST_entry SLIST_entry

Detailed Description

an entry in single linked list, add to structure as member in order to make structure storable in hash table. If the user wants to link his struct(ure) into a SLIST linked list, then he must embed a DLIST_entry into his structure. Access to user defined structure is via embedded SLIST_entry.


Typedef Documentation

typedef struct tagSLIST_entry SLIST_entry