Index: trunk/psLib/src/collections/psBitSet.h
===================================================================
--- trunk/psLib/src/collections/psBitSet.h	(revision 1172)
+++ trunk/psLib/src/collections/psBitSet.h	(revision 1407)
@@ -1,2 +1,3 @@
+
 /** @file  psBitSet.h
  *
@@ -12,6 +13,6 @@
  *  @author Ross Harman, MHPCC
  *
- *  @version $Revision: 1.9 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2004-07-01 21:48:11 $
+ *  @version $Revision: 1.10 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2004-08-07 00:06:06 $
  *
  *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
@@ -19,5 +20,5 @@
 
 #ifndef PSBITSET_H
-#define PSBITSET_H
+#    define PSBITSET_H
 
 /// @addtogroup BitSet
@@ -25,5 +26,7 @@
 
 /******************************************************************************/
+
 /*  TYPE DEFINITIONS                                                          */
+
 /******************************************************************************/
 
@@ -35,5 +38,7 @@
 typedef struct
 {
+
     int n;      /**< Number of bytes in the array */
+
     char *bits; /**< Aray of bytes holding bits */
 }
@@ -41,5 +46,7 @@
 
 /*****************************************************************************/
+
 /* FUNCTION PROTOTYPES                                                       */
+
 /*****************************************************************************/
 
@@ -51,8 +58,10 @@
  *  @return  psBitSet*: Pointer to struct containing array of bits and size of array.
  */
+
 /*@null@*/
-psBitSet* psBitSetAlloc(
-    int n   /**< Number of bits in psBitSet array */
-);
+
+psBitSet *psBitSetAlloc(int n
+                        /**< Number of bits in psBitSet array */
+                       );
 
 /** Set a bit.
@@ -64,7 +73,10 @@
  *  @return  psBitSet*: Pointer to struct containing psBitSet.
  */
-psBitSet* psBitSetSet(
-    /*@returned@*/psBitSet *restrict inMask,  /**< Pointer to psBitSet to be set. */
-    int bit                     /**< Bit to be set. */
+psBitSet *psBitSetSet(
+
+    /* @returned@ */ psBitSet * restrict inMask,
+    /**< Pointer to psBitSet to be set. */
+
+    int bit/**< Bit to be set. */
 );
 
@@ -78,8 +90,10 @@
  *  @return  int: Value of bit, either one or zero.
  */
-bool psBitSetTest(
-    const psBitSet *restrict inMask,    /**< Pointer psBitSet to be tested. */
-    int bit                             /**< Bit to be tested. */
-);
+
+bool psBitSetTest(const psBitSet * restrict inMask,
+                  /**< Pointer psBitSet to be tested. */
+
+                  int bit               /**< Bit to be tested. */
+                 );
 
 /** Perform a binary operation on two psBitSets
@@ -90,9 +104,16 @@
  *  @return  psBitSet*: Pointer to struct containing result of binary operation.
  */
-psBitSet* psBitSetOp(
-    /*@returned@*/psBitSet *restrict outMask,   /**< Resulting psBitSet from binary operation */
-    const psBitSet *restrict inMask1,           /**< First psBitSet on which to operate */
-    char *operator,                             /**< Bit operation */
-    const psBitSet *restrict inMask2            /**< First psBitSet on which to operate */
+psBitSet *psBitSetOp(
+
+    /* @returned@ */ psBitSet * restrict outMask,
+    /**< Resulting psBitSet from binary operation */
+
+    const psBitSet * restrict inMask1,
+    /**< First psBitSet on which to operate */
+
+    char *operator,         /**< Bit operation */
+
+    const psBitSet * restrict inMask2
+    /**< First psBitSet on which to operate */
 );
 
@@ -103,8 +124,11 @@
  *  @return  psBitSet*: Pointer to struct containing result of operation.
  */
-psBitSet* psBitSetNot(
-    psBitSet *outBitSet,                /**< Resulting psBitSet from operation */
-    const psBitSet *restrict inBitSet   /**< Input psBitSet */
-);
+
+psBitSet *psBitSetNot(psBitSet * outBitSet,
+                      /**< Resulting psBitSet from operation */
+
+                      const psBitSet * restrict inBitSet
+                      /**< Input psBitSet */
+                     );
 
 /** Convert the psBitSet to a string of ones and zeros.
@@ -115,7 +139,8 @@
  *  @return  char*: Pointer to character array containing string data.
  */
-char *psBitSetToString(
-    const psBitSet *restrict inMask /**< psBitSet to convert */
-);
+
+char *psBitSetToString(const psBitSet * restrict inMask
+                       /**< psBitSet to convert */
+                      );
 
 /// @}
