FreeBASIC
0.91.0
|
#include "fb.h"
Go to the source code of this file.
Functions | |
void | fb_hListDynInit (FB_LIST *list) |
Initializes a list. More... | |
void | fb_hListDynElemAdd (FB_LIST *list, FB_LISTELEM *elem) |
Adds an element to the list. More... | |
void | fb_hListDynElemRemove (FB_LIST *list, FB_LISTELEM *elem) |
Remove an element from the list. More... | |
void fb_hListDynElemAdd | ( | FB_LIST * | list, |
FB_LISTELEM * | elem | ||
) |
Adds an element to the list.
This function adds a list element to the list. It's up to the caller to allocate the memory required by this element.
list | Pointer to the list structure. |
elem | Pointer to the element to add to the list. |
Definition at line 25 of file listdyn.c.
void fb_hListDynElemRemove | ( | FB_LIST * | list, |
FB_LISTELEM * | elem | ||
) |
Remove an element from the list.
This function removes a list element from the list. It's up to the caller to free the memory allocated by this element.
list | Pointer to the list structure. |
elem | Pointer to the element to remove from the list. |
Definition at line 48 of file listdyn.c.
void fb_hListDynInit | ( | FB_LIST * | list) |