dirfile_free_entry_strings (3) - Linux Manuals
dirfile_free_entry_strings: free strings in a GetData gd_entry_t object
NAME
dirfile_free_entry_strings --- free strings in a GetData gd_entry_t objectSYNOPSIS
#include <getdata.h>- gd_entry_t *dirfile_free_entry_strings(gd_entry_t *entry);
DESCRIPTION
If non-NULL, entry must point to a valid and properly initialised gd_entry_t object, such as that returned by get_entry(3). As well, the caller may construct a properly initialised gd_entry_t object by first setting all bits to zero, then setting the field_type parameter to the desired gd_entype_t symbol, and finally initialising only the members defined for that type. The results of calling this function are undefined if the character strings pointed to by the string members of entry have not been allocated with malloc(3), unless these pointer members are equal to NULL.
See get_entry(3) for a complete description of the gd_entry_t data type.