Index: trunk/psLib/src/collections/psArray.h
===================================================================
--- trunk/psLib/src/collections/psArray.h	(revision 1228)
+++ trunk/psLib/src/collections/psArray.h	(revision 1407)
@@ -1,2 +1,3 @@
+
 /** @file  psArray.h
  *
@@ -11,6 +12,6 @@
  *  @author Ross Harman, MHPCC
  *
- *  @version $Revision: 1.11 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2004-07-15 22:18:02 $
+ *  @version $Revision: 1.12 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2004-08-07 00:06:06 $
  *
  *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
@@ -18,8 +19,8 @@
 
 #ifndef PS_ARRAY_H
-#define PS_ARRAY_H
+#    define PS_ARRAY_H
 
-#include "psType.h"
-#include "psCompare.h"
+#    include "psType.h"
+#    include "psCompare.h"
 
 /// @addtogroup Array
@@ -33,12 +34,14 @@
 typedef struct
 {
-    unsigned int nalloc;                ///< Total number of elements available.
-    unsigned int n;                     ///< Number of elements in use.
-    psPTR* data;                        ///< An Array of pointer elements
+    unsigned int nalloc;        // /< Total number of elements available.
+    unsigned int n;             // /< Number of elements in use.
+    psPTR *data;                // /< An Array of pointer elements
 }
 psArray;
 
 /*****************************************************************************/
+
 /* FUNCTION PROTOTYPES                                                       */
+
 /*****************************************************************************/
 
@@ -51,7 +54,6 @@
  *
  */
-psArray *psArrayAlloc(
-    unsigned int nalloc                 ///< Total number of elements to make available.
-);
+psArray *psArrayAlloc(unsigned int nalloc       // /< Total number of elements to make available.
+                     );
 
 /** Reallocate an array.
@@ -63,8 +65,7 @@
  *
  */
-psArray *psArrayRealloc(
-    unsigned int nalloc,                ///< Total number of elements to make available.
-    psArray *restrict psArr            ///< array to reallocate.
-);
+psArray *psArrayRealloc(unsigned int nalloc,    // /< Total number of elements to make available.
+                        psArray * restrict psArr        // /< array to reallocate.
+                       );
 
 /** Deallocate/Dereference elements of an array.
@@ -75,7 +76,6 @@
  *
  */
-void psArrayElementFree(
-    psArray *restrict psArr    ///< Void pointer array to destroy.
-);
+void psArrayElementFree(psArray * restrict psArr        // /< Void pointer array to destroy.
+                       );
 
 /** Sort the array according to an external compare function.
@@ -86,5 +86,5 @@
  *  @return psArray*       The sorted array.
  */
-psArray* psArraySort(psArray* in, psComparePtrFcn compare);
+psArray *psArraySort(psArray * in, psComparePtrFcn compare);
 
 /// @}
