/*
 * item.h --
 *	POSTGRES disk item definitions.
 *
 * Identification:
 *	/usr/local/devel/postgres-v4r2/src/backend/storage/RCS/item.h,v 1.6 1991/04/28 09:15:20 cimarron Exp
 */

#ifndef	ItemIncluded	/* Include this file only once. */
#define ItemIncluded	1

#include "tmp/c.h"
#include "access/htup.h"

typedef Pointer	Item;

typedef uint16	ItemIndex;
typedef uint16	ItemNumber;

/*
 * ItemIsValid
 *	True iff the block number is valid.
 */
#define	ItemIsValid(item) PointerIsValid(item)

#endif	/* !defined(ItemIncluded) */
