F_ISSET
#define F_ISSET(p, f) ((p)->flags & (f))
#define F_ISSET(p, f) FL_ISSET((p)->flags, (f))
#define F_ISSET(w, f) (((w) & (f)) == (f))