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

Function UTIL_isRegularFile

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

Source from the content-addressed store, hash-verified

133}
134
135int UTIL_isRegularFile(const char* infilename)
136{
137 stat_t statbuf;
138 return UTIL_stat(infilename, &statbuf) && UTIL_isRegularFileStat(&statbuf);
139}
140
141int UTIL_isRegularFileStat(const stat_t* statbuf)
142{

Callers 4

INThandlerFunction · 0.85
addHandlerFunction · 0.85
FIO_openDstFileFunction · 0.85
getFileInfoFunction · 0.85

Calls 2

UTIL_statFunction · 0.85
UTIL_isRegularFileStatFunction · 0.85

Tested by

no test coverage detected