1free_config_entries(3) Allegro manual free_config_entries(3)
2
3
4
6 free_config_entries - Frees memory allocated for config entry lists.
7 Allegro game programming library.
8
10 #include <allegro.h>
11
12
13 int free_config_entries(const char ***names);
14
16 Once you are done with the string arrays filled in by list_con‐
17 fig_entries and list_config_sections, you can free them again with this
18 function. The passed array pointer will be set to NULL, and you
19 directly can pass the same pointer again to list_config_entries or
20 list_config_sections later - but you also could pass them again without
21 freeing first, since the memory is re-allocated when the pointer is not
22 NULL.
23
24 See list_config_entries for an example of how to use it.
25
26
28 list_config_entries(3), list_config_sections(3)
29
30
31
32Allegro version 4.4.3 free_config_entries(3)