Index: trunk/psLib/src/collections/psBitSet.h
===================================================================
--- trunk/psLib/src/collections/psBitSet.h	(revision 1407)
+++ trunk/psLib/src/collections/psBitSet.h	(revision 1440)
@@ -13,6 +13,6 @@
  *  @author Ross Harman, MHPCC
  *
- *  @version $Revision: 1.10 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2004-08-07 00:06:06 $
+ *  @version $Revision: 1.11 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2004-08-09 23:34:57 $
  *
  *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
@@ -56,10 +56,10 @@
  *  allocation.
  *
- *  @return  psBitSet*: Pointer to struct containing array of bits and size of array.
+ *  @return  psBitSet* : Pointer to struct containing array of bits and size of array.
  */
 
 /*@null@*/
 
-psBitSet *psBitSetAlloc(int n
+psBitSet* psBitSetAlloc(int n
                         /**< Number of bits in psBitSet array */
                        );
@@ -71,9 +71,9 @@
  *  an array with two elements would result in an psBitSet that looks like 00000000 00001000.
  *
- *  @return  psBitSet*: Pointer to struct containing psBitSet.
+ *  @return  psBitSet* : Pointer to struct containing psBitSet.
  */
-psBitSet *psBitSetSet(
+psBitSet* psBitSetSet(
 
-    /* @returned@ */ psBitSet * restrict inMask,
+    /* @returned@ */ psBitSet* restrict inMask,
     /**< Pointer to psBitSet to be set. */
 
@@ -91,5 +91,5 @@
  */
 
-bool psBitSetTest(const psBitSet * restrict inMask,
+bool psBitSetTest(const psBitSet* restrict inMask,
                   /**< Pointer psBitSet to be tested. */
 
@@ -102,17 +102,17 @@
  *  be performed and an error message will be logged.
  *
- *  @return  psBitSet*: Pointer to struct containing result of binary operation.
+ *  @return  psBitSet* : Pointer to struct containing result of binary operation.
  */
-psBitSet *psBitSetOp(
+psBitSet* psBitSetOp(
 
-    /* @returned@ */ psBitSet * restrict outMask,
+    /* @returned@ */ psBitSet* restrict outMask,
     /**< Resulting psBitSet from binary operation */
 
-    const psBitSet * restrict inMask1,
+    const psBitSet* restrict inMask1,
     /**< First psBitSet on which to operate */
 
     char *operator,         /**< Bit operation */
 
-    const psBitSet * restrict inMask2
+    const psBitSet* restrict inMask2
     /**< First psBitSet on which to operate */
 );
@@ -122,11 +122,11 @@
  *  Toggles bits in a psBitset. All zero bits are set to one and all one bits are set to zero.
  *
- *  @return  psBitSet*: Pointer to struct containing result of operation.
+ *  @return  psBitSet* : Pointer to struct containing result of operation.
  */
 
-psBitSet *psBitSetNot(psBitSet * outBitSet,
+psBitSet* psBitSetNot(psBitSet* outBitSet,
                       /**< Resulting psBitSet from operation */
 
-                      const psBitSet * restrict inBitSet
+                      const psBitSet* restrict inBitSet
                       /**< Input psBitSet */
                      );
@@ -140,5 +140,5 @@
  */
 
-char *psBitSetToString(const psBitSet * restrict inMask
+char *psBitSetToString(const psBitSet* restrict inMask
                        /**< psBitSet to convert */
                       );
