mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
9 lines
169 B
C
9 lines
169 B
C
#include <sys/stat.h>
|
|
#include <sys/types.h>
|
|
#include <dirent.h>
|
|
|
|
int main(int argc, char ** argv) {
|
|
struct stat stat_buffer;
|
|
return S_ISREG(stat_buffer.st_mode);
|
|
}
|