Index: trunk/psLib/src/sysUtils/psString.h
===================================================================
--- trunk/psLib/src/sysUtils/psString.h	(revision 1441)
+++ trunk/psLib/src/sysUtils/psString.h	(revision 1448)
@@ -1,3 +1,2 @@
-
 /** @file  psString.h
  *
@@ -11,6 +10,6 @@
  *  @author Eric Van Alst, MHPCC
  *
- *  @version $Revision: 1.7 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2004-08-09 23:40:55 $
+ *  @version $Revision: 1.8 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2004-08-10 01:55:34 $
  *
  *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
@@ -20,26 +19,7 @@
 #define PS_STRING_H
 
-/******************************************************************************/
 
-/*  DEFINE STATEMENTS                                                         */
-
-/******************************************************************************/
-
-/** This macro will convert the arguement to a quoted string */
+/** This macro will convert the argument to a quoted string */
 #define PS_STRING(S)  #S
-
-/******************************************************************************/
-
-/*  TYPE DEFINITIONS                                                          */
-
-/******************************************************************************/
-
-// None
-
-/*****************************************************************************/
-
-/* FUNCTION PROTOTYPES                                                       */
-
-/*****************************************************************************/
 
 // Doxygen group tags
@@ -54,11 +34,11 @@
  *  plus one and copy the input string to the newly allocated memory.
  *
- *  @return  char* Copy of input string
+ *  @return char*      Copy of input string
  *
  */
-
-char *psStringCopy(const char *str
-                   /**< Input string of characters to copy */
-                  );
+char *psStringCopy(
+    const char *str
+    /**< Input string of characters to copy */
+);
 
 /** Copies the input string up to the specified number of characters
@@ -78,10 +58,11 @@
 /*@null@*/
 
-char *psStringNCopy(const char *str,
-                    /**< Input string of characters to copy */
+char *psStringNCopy(
+    const char *str,
+    /**< Input string of characters to copy */
 
-                    int nChar
-                    /**< Number of bytes to allocate for string copy */
-                   );
+    int nChar
+    /**< Number of bytes to allocate for string copy */
+);
 
 /* @} */// Doxygen - End of SystemGroup Functions
