diff options
author | Bruce Momjian | 1997-09-08 02:41:22 +0000 |
---|---|---|
committer | Bruce Momjian | 1997-09-08 02:41:22 +0000 |
commit | 319dbfa7364721d3343af03a7ce063c2a2c9d385 (patch) | |
tree | a2146fe02c49ce1e497b7c287dfcaa367a703ae4 /src/include/utils/bit.h | |
parent | a90f12fd9d6886da4f0734288496361a304d3882 (diff) |
Another PGINDENT run that changes variable indenting and case label indenting. Also static variable indenting.
Diffstat (limited to 'src/include/utils/bit.h')
-rw-r--r-- | src/include/utils/bit.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/include/utils/bit.h b/src/include/utils/bit.h index ab68c0d6087..e8235b5a3a3 100644 --- a/src/include/utils/bit.h +++ b/src/include/utils/bit.h @@ -6,15 +6,15 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: bit.h,v 1.2 1997/09/07 05:02:09 momjian Exp $ + * $Id: bit.h,v 1.3 1997/09/08 02:39:29 momjian Exp $ * *------------------------------------------------------------------------- */ #ifndef BIT_H #define BIT_H -typedef bits8 *BitArray; -typedef uint32 BitIndex; +typedef bits8 *BitArray; +typedef uint32 BitIndex; #define BitsPerByte 8 @@ -22,18 +22,18 @@ typedef uint32 BitIndex; * BitArraySetBit -- * 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. */ -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. */ -extern bool BitArrayBitIsSet(BitArray bitArray, BitIndex bitIndex); +extern bool BitArrayBitIsSet(BitArray bitArray, BitIndex bitIndex); #endif /* BIT_H */ |