Searched refs:fName1 (Results 1 – 1 of 1) sorted by relevance
| /freebsd/sys/contrib/zstd/programs/ |
| H A D | util.c | 373 int UTIL_isSameFile(const char* fName1, const char* fName2) in UTIL_isSameFile() argument 376 assert(fName1 != NULL); assert(fName2 != NULL); in UTIL_isSameFile() 377 UTIL_TRACE_CALL("UTIL_isSameFile(%s, %s)", fName1, fName2); in UTIL_isSameFile() 383 ret = !strcmp(fName1, fName2); in UTIL_isSameFile() 387 ret = UTIL_stat(fName1, &file1Stat) in UTIL_isSameFile() 389 && UTIL_isSameFileStat(fName1, fName2, &file1Stat, &file2Stat); in UTIL_isSameFile() 397 const char* fName1, const char* fName2, in UTIL_isSameFileStat() argument 401 assert(fName1 != NULL); assert(fName2 != NULL); in UTIL_isSameFileStat() 402 UTIL_TRACE_CALL("UTIL_isSameFileStat(%s, %s)", fName1, fName2); in UTIL_isSameFileStat() 410 ret = !strcmp(fName1, fName2); in UTIL_isSameFileStat()
|