Lines Matching defs:A
71 #define FTYPE(A) (A.st_mode)
72 #define FMODE(A) (A.st_mode)
73 #define IDENTICAL(A,B) (A.st_dev==B.st_dev && A.st_ino==B.st_ino)
74 #define ISBLK(A) ((A.st_mode & S_IFMT) == S_IFBLK)
75 #define ISCHR(A) ((A.st_mode & S_IFMT) == S_IFCHR)
76 #define ISDIR(A) ((A.st_mode & S_IFMT) == S_IFDIR)
77 #define ISFIFO(A) ((A.st_mode & S_IFMT) == S_IFIFO)
78 #define ISREG(A) ((A.st_mode & S_IFMT) == S_IFREG)