MCPcopy Create free account
hub / github.com/coreutils/coreutils / ignorable_missing

Function ignorable_missing

src/remove.c:357–361  ·  view source on GitHub ↗

Encapsulate the test for whether the errno value, ERRNUM, is ignorable. */

Source from the content-addressed store, hash-verified

355
356/* Encapsulate the test for whether the errno value, ERRNUM, is ignorable. */
357static inline bool
358ignorable_missing (struct rm_options const *x, int errnum)
359{
360 return x->ignore_missing_files && nonexistent_file_errno (errnum);
361}
362
363/* Tell fts not to traverse into the hierarchy at ENT. */
364static void

Callers 1

exciseFunction · 0.85

Calls 1

nonexistent_file_errnoFunction · 0.85

Tested by

no test coverage detected