free_ordered_filename_array()

free_ordered_filename_array()#

Free the memory allocated for an ordered array of filenames.

Prototype

PUBLIC void free_ordered_filename_array(
    char        **filename_array,
    int           file_count
);
        

Parameters

Key

Type

Description

filename_array

char **

The array of filenames to free.

file_count

int

The number of files in the array.


Return Value

No return value. This function frees the memory allocated for the filename array.

Prototype

// Not applicable in JS

Prototype

# Not applicable in Python
Examples
// TODO C examples
// TODO JS examples
# TODO Python examples