MCPcopy Create free account
hub / github.com/F-Stack/f-stack / UTIL_freeFileNamesTable

Function UTIL_freeFileNamesTable

freebsd/contrib/zstd/programs/util.c:424–430  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

422}
423
424void UTIL_freeFileNamesTable(FileNamesTable* table)
425{
426 if (table==NULL) return;
427 free((void*)table->fileNames);
428 free(table->buf);
429 free(table);
430}
431
432FileNamesTable* UTIL_allocateFileNamesTable(size_t tableSize)
433{

Callers 4

mainFunction · 0.85
mainFunction · 0.85
UTIL_mergeFileNamesTableFunction · 0.85
UTIL_expandFNTFunction · 0.85

Calls 1

freeFunction · 0.50

Tested by

no test coverage detected