Index: trunk/psLib/src/sysUtils/psHash.h
===================================================================
--- trunk/psLib/src/sysUtils/psHash.h	(revision 1406)
+++ trunk/psLib/src/sysUtils/psHash.h	(revision 1407)
@@ -1,2 +1,3 @@
+
 /** @file  psHash.h
  *  @brief Contains support for basic hashing functions.
@@ -10,62 +11,63 @@
  *  @author George Gusciora, MHPCC
  *   
- *  @version $Revision: 1.18 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2004-08-06 22:34:05 $
+ *  @version $Revision: 1.19 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2004-08-07 00:06:06 $
  *
  *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
  */
 #if !defined(PS_HASH_H)
-#define PS_HASH_H
+#    define PS_HASH_H
 
 /** \addtogroup HashTable
  *  \{
  */
-#include<stdbool.h>
+#    include<stdbool.h>
 
-#include "psList.h"
+#    include "psList.h"
 
 /** A bucket that holds an item of data. */
 typedef struct psHashBucket
 {
-    char *key;                          ///< key for this item of data
-    void *data;                         ///< the data itself
-    struct psHashBucket *next;          ///< list of other possible keys
+    char *key;                  // /< key for this item of data
+    void *data;                 // /< the data itself
+    struct psHashBucket *next;  // /< list of other possible keys
 }
 psHashBucket;
 
 //typedef struct HashTable psHash; ///< Opaque type for a hash table
+
 /** The hash-table itself. */
 typedef struct psHash
 {
-    int nbucket;                        ///< Number of buckets in hash table.
-    psHashBucket **buckets;             ///< The bucket data.
+    int nbucket;                // /< Number of buckets in hash table.
+    psHashBucket **buckets;     // /< The bucket data.
 }
 psHash;
 
 /// Allocate hash buckets in table.
-psHash *psHashAlloc(int nbucket       ///< The number of buckets to allocate.
+psHash *psHashAlloc(int nbucket // /< The number of buckets to allocate.
                    );
 
 /// Insert entry into table.
-bool psHashAdd(psHash *table,               ///< table to insert in
-               const char *key,             ///< key to use
-               void *data                   ///< data to insert
+bool psHashAdd(psHash * table,  // /< table to insert in
+               const char *key, // /< key to use
+               void *data       // /< data to insert
               );
 
 /// Lookup key in table.
-void *psHashLookup(psHash *table,      ///< table to lookup key in
-                   const char *key     ///< key to lookup
+void *psHashLookup(psHash * table,      // /< table to lookup key in
+                   const char *key      // /< key to lookup
                   );
 
 /// Remove key from table.
-bool psHashRemove(psHash *table,      ///< table to lookup key in
-                  const char *key     ///< key to lookup
+bool psHashRemove(psHash * table,       // /< table to lookup key in
+                  const char *key       // /< key to lookup
                  );
 
 /// List all keys in table.
-psList *psHashKeyList(psHash *table  ///< table to list keys from.
+psList *psHashKeyList(psHash * table    // /< table to list keys from.
                      );
 
-/* \} */ // End of DataGroup Functions
+/* \} */// End of DataGroup Functions
 
 #endif
