Index: trunk/psLib/src/sys/psString.h
===================================================================
--- trunk/psLib/src/sys/psString.h	(revision 974)
+++ trunk/psLib/src/sys/psString.h	(revision 1407)
@@ -1,2 +1,3 @@
+
 /** @file  psString.h
  *
@@ -10,6 +11,6 @@
  *  @author Eric Van Alst, MHPCC
  *
- *  @version $Revision: 1.5 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2004-06-10 01:58:06 $
+ *  @version $Revision: 1.6 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2004-08-07 00:06:06 $
  *
  *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
@@ -17,15 +18,19 @@
 
 #ifndef PS_STRING_H
-#define PS_STRING_H
+#    define PS_STRING_H
 
 /******************************************************************************/
+
 /*  DEFINE STATEMENTS                                                         */
+
 /******************************************************************************/
 
 /** This macro will convert the arguement to a quoted string */
-#define PS_STRING(S)  #S
+#    define PS_STRING(S)  #S
 
 /******************************************************************************/
+
 /*  TYPE DEFINITIONS                                                          */
+
 /******************************************************************************/
 
@@ -33,8 +38,11 @@
 
 /*****************************************************************************/
+
 /* FUNCTION PROTOTYPES                                                       */
+
 /*****************************************************************************/
 
 // Doxygen group tags
+
 /** @addtogroup SysUtils
  *  @{
@@ -49,8 +57,8 @@
  *
  */
-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
@@ -67,12 +75,15 @@
  *
  */
+
 /*@null@*/
-char *psStringNCopy(
-    const char *str,    /**< Input string of characters to copy */
-    int        nChar    /**< Number of bytes to allocate for string copy */
-);
 
-/* @} */  // Doxygen - End of SystemGroup Functions
+char *psStringNCopy(const char *str,
+                    /**< Input string of characters to copy */
+
+                    int nChar
+                    /**< Number of bytes to allocate for string copy */
+                   );
+
+/* @} */// Doxygen - End of SystemGroup Functions
 
 #endif
-
