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

Function UTIL_expandFNT

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

Source from the content-addressed store, hash-verified

1001
1002
1003void UTIL_expandFNT(FileNamesTable** fnt, int followLinks)
1004{
1005 FileNamesTable* const newFNT = UTIL_createExpandedFNT((*fnt)->fileNames, (*fnt)->tableSize, followLinks);
1006 CONTROL(newFNT != NULL);
1007 UTIL_freeFileNamesTable(*fnt);
1008 *fnt = newFNT;
1009}
1010
1011FileNamesTable* UTIL_createFNT_fromROTable(const char** filenames, size_t nbFilenames)
1012{

Callers 2

mainFunction · 0.85
mainFunction · 0.85

Calls 2

UTIL_createExpandedFNTFunction · 0.85
UTIL_freeFileNamesTableFunction · 0.85

Tested by

no test coverage detected