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

Function UTIL_isDirectory

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

Source from the content-addressed store, hash-verified

199}
200
201int UTIL_isDirectory(const char* infilename)
202{
203 stat_t statbuf;
204 return UTIL_stat(infilename, &statbuf) && UTIL_isDirectoryStat(&statbuf);
205}
206
207int UTIL_isDirectoryStat(const stat_t* statbuf)
208{

Callers 6

BMK_loadFilesFunction · 0.85
FIO_decompressSrcFileFunction · 0.85
UTIL_prepareFileListFunction · 0.85
UTIL_createExpandedFNTFunction · 0.85
BMK_loadFilesFunction · 0.85

Calls 2

UTIL_statFunction · 0.85
UTIL_isDirectoryStatFunction · 0.85

Tested by

no test coverage detected