Index: trunk/psLib/src/collections/psBitSet.h
===================================================================
--- trunk/psLib/src/collections/psBitSet.h	(revision 1441)
+++ trunk/psLib/src/collections/psBitSet.h	(revision 1472)
@@ -13,6 +13,6 @@
  *  @author Ross Harman, MHPCC
  *
- *  @version $Revision: 1.12 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2004-08-09 23:40:55 $
+ *  @version $Revision: 1.13 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2004-08-11 19:53:33 $
  *
  *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
@@ -38,8 +38,6 @@
 typedef struct
 {
-
-    int n;      /**< Number of bytes in the array */
-
-    char *bits; /**< Aray of bytes holding bits */
+    int n;                             ///< Number of bytes in the array
+    char *bits;                        ///< Aray of bytes holding bits
 }
 psBitSet;
@@ -60,8 +58,7 @@
 
 /*@null@*/
-
-psBitSet* psBitSetAlloc(int n
-                        /**< Number of bits in psBitSet array */
-                       );
+psBitSet* psBitSetAlloc(
+    int n                              ///< Number of bits in psBitSet array
+);
 
 /** Set a bit.
@@ -74,9 +71,7 @@
  */
 psBitSet* psBitSetSet(
-
-    /* @returned@ */ psBitSet* restrict inMask,
-    /**< Pointer to psBitSet to be set. */
-
-    int bit/**< Bit to be set. */
+    /* @returned@ */
+    psBitSet* restrict inMask,         ///< Pointer to psBitSet to be set.
+    int bit                            ///< Bit to be set.
 );
 
@@ -91,9 +86,8 @@
  */
 
-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
@@ -105,15 +99,9 @@
  */
 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 */
+    /* @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
 );
 
@@ -125,10 +113,8 @@
  */
 
-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.
@@ -140,7 +126,7 @@
  */
 
-char *psBitSetToString(const psBitSet* restrict inMask
-                       /**< psBitSet to convert */
-                      );
+char *psBitSetToString(
+    const psBitSet* restrict inMask    ///< psBitSet to convert */
+);
 
 /// @}
