![]() |
![]()
| ![]() |
![]()
NAMElist_config_entries - Lists the names of all entries in a config section Allegro game programming library. SYNOPSIS#include <allegro.h> int list_config_entries(const char *section, const char ***names); DESCRIPTIONThis function can be used to get a list of all entries in the given config section. The names parameter is a pointer to an array of strings. If it points to a NULL pointer, the list will be allocated, else it will be re-allocated. You should free the list again with free_config_entries if you don't need it anymore, or you can pass it again to list_config_entries and the memory will be re-used. See the following example for how you can use it, it will print out the complete contents of the current configuration:
RETURN VALUEReturns the number of valid strings in the names array. SEE ALSOset_config_file(3), get_config_string(3), list_config_sections(3), free_config_entries(3)
|