diff options
Diffstat (limited to 'src/include/utils/bit.h')
-rw-r--r-- | src/include/utils/bit.h | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/src/include/utils/bit.h b/src/include/utils/bit.h index dc190accc6b..ab68c0d6087 100644 --- a/src/include/utils/bit.h +++ b/src/include/utils/bit.h @@ -1,39 +1,39 @@ /*------------------------------------------------------------------------- * * bit.h-- - * Standard bit array definitions. + * Standard bit array definitions. * * * Copyright (c) 1994, Regents of the University of California * - * $Id: bit.h,v 1.1 1996/08/28 01:58:43 scrappy Exp $ + * $Id: bit.h,v 1.2 1997/09/07 05:02:09 momjian Exp $ * *------------------------------------------------------------------------- */ -#ifndef BIT_H +#ifndef BIT_H #define BIT_H -typedef bits8 *BitArray; +typedef bits8 *BitArray; typedef uint32 BitIndex; -#define BitsPerByte 8 +#define BitsPerByte 8 /* * BitArraySetBit -- - * Sets (to 1) the value of a bit in a bit array. + * Sets (to 1) the value of a bit in a bit array. */ -extern void BitArraySetBit(BitArray bitArray, BitIndex bitIndex); +extern void BitArraySetBit(BitArray bitArray, BitIndex bitIndex); /* * BitArrayClearBit -- - * Clears (to 0) the value of a bit in a bit array. + * Clears (to 0) the value of a bit in a bit array. */ -extern void BitArrayClearBit(BitArray bitArray, BitIndex bitIndex); +extern void BitArrayClearBit(BitArray bitArray, BitIndex bitIndex); /* * BitArrayBitIsSet -- - * True iff the bit is set (1) in a bit array. + * True iff the bit is set (1) in a bit array. */ -extern bool BitArrayBitIsSet(BitArray bitArray, BitIndex bitIndex); +extern bool BitArrayBitIsSet(BitArray bitArray, BitIndex bitIndex); -#endif /* BIT_H */ +#endif /* BIT_H */ |