Index: trunk/psLib/src/collections/psCompare.h
===================================================================
--- trunk/psLib/src/collections/psCompare.h	(revision 1111)
+++ trunk/psLib/src/collections/psCompare.h	(revision 1407)
@@ -1,4 +1,4 @@
 #if !defined(PS_COMPARE_H)
-#define PS_COMPARE_H
+#    define PS_COMPARE_H
 
 /** @file psCompare.h
@@ -9,6 +9,6 @@
  *  @ingroup Compare
  *
- *  @version $Revision: 1.1 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2004-06-28 20:36:37 $
+ *  @version $Revision: 1.2 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2004-08-07 00:06:06 $
  *
  *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
@@ -26,5 +26,5 @@
  *                   than, equal to, or greater than the second. 
  */
-typedef int (*psComparePtrFcn)(const void** a, const void** b);
+typedef int (*psComparePtrFcn) (const void **a, const void **b);
 
 /** A comparison function for sorting.
@@ -34,5 +34,5 @@
  *                   than, equal to, or greater than the second. 
  */
-typedef int (*psCompareFcn)(const void* a, const void* b);
+typedef int (*psCompareFcn) (const void *a, const void *b);
 
 /** Compare function of psS8 data.  For use with psListSort.
@@ -42,5 +42,5 @@
  *                   than, equal to, or greater than the second. 
  */
-int psCompareS8Ptr(const void** a, const void** b);
+int psCompareS8Ptr(const void **a, const void **b);
 
 /** Compare function of psS16 data.  For use with psListSort.
@@ -50,5 +50,5 @@
  *                   than, equal to, or greater than the second. 
  */
-int psCompareS16Ptr(const void** a, const void** b);
+int psCompareS16Ptr(const void **a, const void **b);
 
 /** Compare function of psS32 data.  For use with psListSort.
@@ -58,5 +58,5 @@
  *                   than, equal to, or greater than the second. 
  */
-int psCompareS32Ptr(const void** a, const void** b);
+int psCompareS32Ptr(const void **a, const void **b);
 
 /** Compare function of psS64 data.  For use with psListSort.
@@ -66,5 +66,5 @@
  *                   than, equal to, or greater than the second. 
  */
-int psCompareS64Ptr(const void** a, const void** b);
+int psCompareS64Ptr(const void **a, const void **b);
 
 /** Compare function of psU8 data.  For use with psListSort.
@@ -74,5 +74,5 @@
  *                   than, equal to, or greater than the second. 
  */
-int psCompareU8Ptr(const void** a, const void** b);
+int psCompareU8Ptr(const void **a, const void **b);
 
 /** Compare function of psU16 data.  For use with psListSort.
@@ -82,5 +82,5 @@
  *                   than, equal to, or greater than the second. 
  */
-int psCompareU16Ptr(const void** a, const void** b);
+int psCompareU16Ptr(const void **a, const void **b);
 
 /** Compare function of psU32 data.  For use with psListSort.
@@ -90,5 +90,5 @@
  *                   than, equal to, or greater than the second. 
  */
-int psCompareU32Ptr(const void** a, const void** b);
+int psCompareU32Ptr(const void **a, const void **b);
 
 /** Compare function of psU64 data.  For use with psListSort.
@@ -98,5 +98,5 @@
  *                   than, equal to, or greater than the second. 
  */
-int psCompareU64Ptr(const void** a, const void** b);
+int psCompareU64Ptr(const void **a, const void **b);
 
 /** Compare function of psF32 data.  For use with psListSort.
@@ -106,5 +106,5 @@
  *                   than, equal to, or greater than the second. 
  */
-int psCompareF32Ptr(const void** a, const void** b);
+int psCompareF32Ptr(const void **a, const void **b);
 
 /** Compare function of psF64 data.  For use with psListSort.
@@ -114,5 +114,5 @@
  *                   than, equal to, or greater than the second. 
  */
-int psCompareF64Ptr(const void** a, const void** b);
+int psCompareF64Ptr(const void **a, const void **b);
 
 /** Compare function of psS8 data.  For use with psListSort for descending ordering.
@@ -122,5 +122,5 @@
  *                   than, equal to, or less than the second. 
  */
-int psCompareDescendingS8Ptr(const void** a, const void** b);
+int psCompareDescendingS8Ptr(const void **a, const void **b);
 
 /** Compare function of psS16 data.  For use with psListSort for descending ordering.
@@ -130,5 +130,5 @@
  *                   than, equal to, or less than the second. 
  */
-int psCompareDescendingS16Ptr(const void** a, const void** b);
+int psCompareDescendingS16Ptr(const void **a, const void **b);
 
 /** Compare function of psS32 data.  For use with psListSort for descending ordering.
@@ -138,5 +138,5 @@
  *                   than, equal to, or less than the second. 
  */
-int psCompareDescendingS32Ptr(const void** a, const void** b);
+int psCompareDescendingS32Ptr(const void **a, const void **b);
 
 /** Compare function of psS64 data.  For use with psListSort for descending ordering.
@@ -146,5 +146,5 @@
  *                   than, equal to, or less than the second. 
  */
-int psCompareDescendingS64Ptr(const void** a, const void** b);
+int psCompareDescendingS64Ptr(const void **a, const void **b);
 
 /** Compare function of psU8 data.  For use with psListSort for descending ordering.
@@ -154,5 +154,5 @@
  *                   than, equal to, or less than the second. 
  */
-int psCompareDescendingU8Ptr(const void** a, const void** b);
+int psCompareDescendingU8Ptr(const void **a, const void **b);
 
 /** Compare function of psU16 data.  For use with psListSort for descending ordering.
@@ -162,5 +162,5 @@
  *                   than, equal to, or less than the second. 
  */
-int psCompareDescendingU16Ptr(const void** a, const void** b);
+int psCompareDescendingU16Ptr(const void **a, const void **b);
 
 /** Compare function of psU32 data.  For use with psListSort for descending ordering.
@@ -170,5 +170,5 @@
  *                   than, equal to, or lessg than the second. 
  */
-int psCompareDescendingU32Ptr(const void** a, const void** b);
+int psCompareDescendingU32Ptr(const void **a, const void **b);
 
 /** Compare function of psU64 data.  For use with psListSort for descending ordering.
@@ -178,5 +178,5 @@
  *                   than, equal to, or lessg than the second. 
  */
-int psCompareDescendingU64Ptr(const void** a, const void** b);
+int psCompareDescendingU64Ptr(const void **a, const void **b);
 
 /** Compare function of psF32 data.  For use with psListSort for descending ordering.
@@ -186,5 +186,5 @@
  *                   than, equal to, or lessg than the second. 
  */
-int psCompareDescendingF32Ptr(const void** a, const void** b);
+int psCompareDescendingF32Ptr(const void **a, const void **b);
 
 /** Compare function of psF64 data.  For use with psListSort for descending ordering.
@@ -194,5 +194,5 @@
  *                   than, equal to, or lessg than the second. 
  */
-int psCompareDescendingF64Ptr(const void** a, const void** b);
+int psCompareDescendingF64Ptr(const void **a, const void **b);
 
 /** Compare function of psS8 data.
@@ -202,5 +202,5 @@
  *                   than, equal to, or greater than the second. 
  */
-int psCompareS8(const void* a, const void* b);
+int psCompareS8(const void *a, const void *b);
 
 /** Compare function of psS16 data.
@@ -210,5 +210,5 @@
  *                   than, equal to, or greater than the second. 
  */
-int psCompareS16(const void* a, const void* b);
+int psCompareS16(const void *a, const void *b);
 
 /** Compare function of psS32 data.
@@ -218,5 +218,5 @@
  *                   than, equal to, or greater than the second. 
  */
-int psCompareS32(const void* a, const void* b);
+int psCompareS32(const void *a, const void *b);
 
 /** Compare function of psS64 data.
@@ -226,5 +226,5 @@
  *                   than, equal to, or greater than the second. 
  */
-int psCompareS64(const void* a, const void* b);
+int psCompareS64(const void *a, const void *b);
 
 /** Compare function of psU8 data.
@@ -234,5 +234,5 @@
  *                   than, equal to, or greater than the second. 
  */
-int psCompareU8(const void* a, const void* b);
+int psCompareU8(const void *a, const void *b);
 
 /** Compare function of psU16 data.
@@ -242,5 +242,5 @@
  *                   than, equal to, or greater than the second. 
  */
-int psCompareU16(const void* a, const void* b);
+int psCompareU16(const void *a, const void *b);
 
 /** Compare function of psU32 data.
@@ -250,5 +250,5 @@
  *                   than, equal to, or greater than the second. 
  */
-int psCompareU32(const void* a, const void* b);
+int psCompareU32(const void *a, const void *b);
 
 /** Compare function of psU64 data.
@@ -258,5 +258,5 @@
  *                   than, equal to, or greater than the second. 
  */
-int psCompareU64(const void* a, const void* b);
+int psCompareU64(const void *a, const void *b);
 
 /** Compare function of psF32 data.
@@ -266,5 +266,5 @@
  *                   than, equal to, or greater than the second. 
  */
-int psCompareF32(const void* a, const void* b);
+int psCompareF32(const void *a, const void *b);
 
 /** Compare function of psF64 data.
@@ -274,5 +274,5 @@
  *                   than, equal to, or greater than the second. 
  */
-int psCompareF64(const void* a, const void* b);
+int psCompareF64(const void *a, const void *b);
 
 /** Compare function of psS8 data.
@@ -282,5 +282,5 @@
  *                   than, equal to, or less than the second. 
  */
-int psCompareDescendingS8(const void* a, const void* b);
+int psCompareDescendingS8(const void *a, const void *b);
 
 /** Compare function of psS16 data.
@@ -290,5 +290,5 @@
  *                   than, equal to, or less than the second. 
  */
-int psCompareDescendingS16(const void* a, const void* b);
+int psCompareDescendingS16(const void *a, const void *b);
 
 /** Compare function of psS32 data.
@@ -298,5 +298,5 @@
  *                   than, equal to, or less than the second. 
  */
-int psCompareDescendingS32(const void* a, const void* b);
+int psCompareDescendingS32(const void *a, const void *b);
 
 /** Compare function of psS64 data.
@@ -306,5 +306,5 @@
  *                   than, equal to, or less than the second. 
  */
-int psCompareDescendingS64(const void* a, const void* b);
+int psCompareDescendingS64(const void *a, const void *b);
 
 /** Compare function of psU8 data.
@@ -314,5 +314,5 @@
  *                   than, equal to, or less than the second. 
  */
-int psCompareDescendingU8(const void* a, const void* b);
+int psCompareDescendingU8(const void *a, const void *b);
 
 /** Compare function of psU16 data.
@@ -322,5 +322,5 @@
  *                   than, equal to, or less than the second. 
  */
-int psCompareDescendingU16(const void* a, const void* b);
+int psCompareDescendingU16(const void *a, const void *b);
 
 /** Compare function of psU32 data.
@@ -330,5 +330,5 @@
  *                   than, equal to, or lessg than the second. 
  */
-int psCompareDescendingU32(const void* a, const void* b);
+int psCompareDescendingU32(const void *a, const void *b);
 
 /** Compare function of psU64 data.
@@ -338,5 +338,5 @@
  *                   than, equal to, or lessg than the second. 
  */
-int psCompareDescendingU64(const void* a, const void* b);
+int psCompareDescendingU64(const void *a, const void *b);
 
 /** Compare function of psF32 data.
@@ -346,5 +346,5 @@
  *                   than, equal to, or lessg than the second. 
  */
-int psCompareDescendingF32(const void* a, const void* b);
+int psCompareDescendingF32(const void *a, const void *b);
 
 /** Compare function of psF64 data.
@@ -354,7 +354,5 @@
  *                   than, equal to, or lessg than the second. 
  */
-int psCompareDescendingF64(const void* a, const void* b);
-
-
+int psCompareDescendingF64(const void *a, const void *b);
 
 /// @}
