S_ISLNK
# define S_ISLNK(mode) (((mode) & S_IFMT) == S_IFLNK)
#define S_ISLNK(m) (((m) & 0170000) == 0120000) /* symbolic link */