idirt-1.82d/
idirt-1.82d/bin/
idirt-1.82d/data/LOGS/
idirt-1.82d/data/POLICY/
idirt-1.82d/data/WIZ_ZONES/
idirt-1.82d/doc/
idirt-1.82d/doc/info/
idirt-1.82d/doc/manual/
idirt-1.82d/src/Ident/
idirt-1.82d/src/utils/
idirt-1.82d/utils/
#ifndef _CFLAGS_H
#define _CFLAGS_H

#define	IN_ROOM 	0	/* In room (room) */
#define	IN_CONTAINER	1	/* In container (object) */
#define CARRIED_BY	2	/* Carried by player/mobile */
#define	WORN_BY		3	/* Worn by player/mobile */
#define	WIELDED_BY	4	/* Wielded by player/mobile */
#define	BOTH_BY		5	/* Both worn and wielded player/mobile */

#define iswielded(O)	(ocarrf(O) >= WIELDED_BY)
#define isworn(O)	(ocarrf(O) == WORN_BY || ocarrf(O) == BOTH_BY)

#endif