Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
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
648
static 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_command
Function · 0.85
Calls
1
stat
Class · 0.70
Tested by
no test coverage detected