MCPcopy Create free account
hub / github.com/audacity/audacity / notNormalFile

Function notNormalFile

lib-src/sqlite/shell.c:648–654  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

646# define notNormalFile(X) 0
647#else
648static int notNormalFile(const char *zFile){
649 struct stat x;
650 int rc;
651 memset(&x, 0, sizeof(x));
652 rc = stat(zFile, &x);
653 return rc || !S_ISREG(x.st_mode);
654}
655#endif
656
657/*

Callers 1

do_meta_commandFunction · 0.85

Calls 1

statClass · 0.70

Tested by

no test coverage detected