Go to the source code of this file.
Function Documentation
static int cmp |
( |
const void * |
va, |
|
|
const void * |
vb |
|
) |
| [static] |
The explain_printf_format_list_append function is used to add another formaat specifier to the list.
- Parameters:
-
lp | The list to operate on. |
datum | The additional format spec. |
- Returns:
- 0 on success, -1 if malloc() fails.
Definition at line 51 of file list.c.
The explain_printf_format_list_clear function is used to discard the contents of a list.
- Parameters:
-
lp | The list to operate on. |
Definition at line 44 of file list.c.
The explain_printf_format_list_constructor function is used to prepare a list for use. Failure to call it will cause segfaults.
- Parameters:
-
lp | The list to operate on. |
Definition at line 26 of file list.c.
The explain_printf_format_list_destructor function is used to release resources held by the list. Failure to call it will cause memory leaks.
- Parameters:
-
lp | The list to operate on. |
Definition at line 34 of file list.c.
The explain_printf_format_list_sort function is used to sort the format specifiers in the list, into ascending order of indexes. This is how you figure out the order and types of the remaining arguments.
- Parameters:
-
lp | The list to operate on. |
Definition at line 88 of file list.c.