Index: /trunk/psLib/src/collections/psBitSet.c
===================================================================
--- /trunk/psLib/src/collections/psBitSet.c	(revision 1841)
+++ /trunk/psLib/src/collections/psBitSet.c	(revision 1842)
@@ -11,6 +11,6 @@
  *  @author Robert DeSonia, MHPCC
  *
- *  @version $Revision: 1.17 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2004-09-14 20:01:52 $
+ *  @version $Revision: 1.18 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2004-09-21 23:17:52 $
  *
  *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
@@ -94,5 +94,6 @@
 }
 
-psBitSet* psBitSetSet(psBitSet* inBitSet, int bit)
+psBitSet* psBitSetSet(psBitSet* inBitSet,
+                      int bit)
 {
     char *byte = NULL;
@@ -118,5 +119,6 @@
 }
 
-psBitSet* psBitSetClear(psBitSet* inBitSet, int bit)
+psBitSet* psBitSetClear(psBitSet* inBitSet,
+                        int bit)
 {
     char *byte = NULL;
@@ -142,5 +144,6 @@
 }
 
-bool psBitSetTest(const psBitSet* inBitSet, int bit)
+bool psBitSetTest(const psBitSet* inBitSet,
+                  int bit)
 {
     char *byte = NULL;
@@ -165,5 +168,7 @@
 }
 
-psBitSet* psBitSetOp(psBitSet* outBitSet, const psBitSet* restrict inBitSet1, char *operator,
+psBitSet* psBitSetOp(psBitSet* outBitSet,
+                     const psBitSet* restrict inBitSet1,
+                     char *operator,
                      const psBitSet* restrict inBitSet2)
 {
@@ -279,5 +284,6 @@
 }
 
-psBitSet* psBitSetNot(psBitSet* outBitSet, const psBitSet* restrict inBitSet)
+psBitSet* psBitSetNot(psBitSet* outBitSet,
+                      const psBitSet* restrict inBitSet)
 {
     if (inBitSet == NULL) {
Index: /trunk/psLib/src/collections/psHash.c
===================================================================
--- /trunk/psLib/src/collections/psHash.c	(revision 1841)
+++ /trunk/psLib/src/collections/psHash.c	(revision 1842)
@@ -11,6 +11,6 @@
 *  @author George Gusciora, MHPCC
 *
-*  @version $Revision: 1.4 $ $Name: not supported by cvs2svn $
-*  @date $Date: 2004-09-21 23:15:04 $
+*  @version $Revision: 1.5 $ $Name: not supported by cvs2svn $
+*  @date $Date: 2004-09-21 23:17:53 $
 *
 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
@@ -84,5 +84,7 @@
     the new hash bucket.
  *****************************************************************************/
-static psHashBucket* hashBucketAlloc(const char *key, void *data, psHashBucket* next)
+static psHashBucket* hashBucketAlloc(const char *key,
+                                     void *data,
+                                     psHashBucket* next)
 {
     // Allocate memory for the new hash bucket.
@@ -210,5 +212,7 @@
 there is little common code between those functions.
   *****************************************************************************/
-static void *doHashWork(psHash* table, const char *key, void *data, bool remove
+static void *doHashWork(psHash* table,
+                        const char *key,
+                        void *data, bool remove
                            )
 {
@@ -340,5 +344,7 @@
     boolean value defining success or failure
  *****************************************************************************/
-bool psHashAdd(psHash* table, const char *key, void *data)
+bool psHashAdd(psHash* table,
+               const char *key,
+               void *data)
 {
     if (table == NULL) {
@@ -403,5 +409,6 @@
     boolean value defining success or failure
  *****************************************************************************/
-bool psHashRemove(psHash* table, const char *key)
+bool psHashRemove(psHash* table,
+                  const char *key)
 {
     void *data = NULL;
Index: /trunk/psLib/src/types/psBitSet.c
===================================================================
--- /trunk/psLib/src/types/psBitSet.c	(revision 1841)
+++ /trunk/psLib/src/types/psBitSet.c	(revision 1842)
@@ -11,6 +11,6 @@
  *  @author Robert DeSonia, MHPCC
  *
- *  @version $Revision: 1.17 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2004-09-14 20:01:52 $
+ *  @version $Revision: 1.18 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2004-09-21 23:17:52 $
  *
  *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
@@ -94,5 +94,6 @@
 }
 
-psBitSet* psBitSetSet(psBitSet* inBitSet, int bit)
+psBitSet* psBitSetSet(psBitSet* inBitSet,
+                      int bit)
 {
     char *byte = NULL;
@@ -118,5 +119,6 @@
 }
 
-psBitSet* psBitSetClear(psBitSet* inBitSet, int bit)
+psBitSet* psBitSetClear(psBitSet* inBitSet,
+                        int bit)
 {
     char *byte = NULL;
@@ -142,5 +144,6 @@
 }
 
-bool psBitSetTest(const psBitSet* inBitSet, int bit)
+bool psBitSetTest(const psBitSet* inBitSet,
+                  int bit)
 {
     char *byte = NULL;
@@ -165,5 +168,7 @@
 }
 
-psBitSet* psBitSetOp(psBitSet* outBitSet, const psBitSet* restrict inBitSet1, char *operator,
+psBitSet* psBitSetOp(psBitSet* outBitSet,
+                     const psBitSet* restrict inBitSet1,
+                     char *operator,
                      const psBitSet* restrict inBitSet2)
 {
@@ -279,5 +284,6 @@
 }
 
-psBitSet* psBitSetNot(psBitSet* outBitSet, const psBitSet* restrict inBitSet)
+psBitSet* psBitSetNot(psBitSet* outBitSet,
+                      const psBitSet* restrict inBitSet)
 {
     if (inBitSet == NULL) {
Index: /trunk/psLib/src/types/psHash.c
===================================================================
--- /trunk/psLib/src/types/psHash.c	(revision 1841)
+++ /trunk/psLib/src/types/psHash.c	(revision 1842)
@@ -11,6 +11,6 @@
 *  @author George Gusciora, MHPCC
 *
-*  @version $Revision: 1.4 $ $Name: not supported by cvs2svn $
-*  @date $Date: 2004-09-21 23:15:04 $
+*  @version $Revision: 1.5 $ $Name: not supported by cvs2svn $
+*  @date $Date: 2004-09-21 23:17:53 $
 *
 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
@@ -84,5 +84,7 @@
     the new hash bucket.
  *****************************************************************************/
-static psHashBucket* hashBucketAlloc(const char *key, void *data, psHashBucket* next)
+static psHashBucket* hashBucketAlloc(const char *key,
+                                     void *data,
+                                     psHashBucket* next)
 {
     // Allocate memory for the new hash bucket.
@@ -210,5 +212,7 @@
 there is little common code between those functions.
   *****************************************************************************/
-static void *doHashWork(psHash* table, const char *key, void *data, bool remove
+static void *doHashWork(psHash* table,
+                        const char *key,
+                        void *data, bool remove
                            )
 {
@@ -340,5 +344,7 @@
     boolean value defining success or failure
  *****************************************************************************/
-bool psHashAdd(psHash* table, const char *key, void *data)
+bool psHashAdd(psHash* table,
+               const char *key,
+               void *data)
 {
     if (table == NULL) {
@@ -403,5 +409,6 @@
     boolean value defining success or failure
  *****************************************************************************/
-bool psHashRemove(psHash* table, const char *key)
+bool psHashRemove(psHash* table,
+                  const char *key)
 {
     void *data = NULL;
