Index: trunk/psLib/src/sysUtils/psString.c
===================================================================
--- trunk/psLib/src/sysUtils/psString.c	(revision 1406)
+++ trunk/psLib/src/sysUtils/psString.c	(revision 1407)
@@ -1,2 +1,3 @@
+
 /** @file  psString.c
  *
@@ -8,6 +9,6 @@
  *  @author Eric Van Alst, MHPCC
  *   
- *  @version $Revision: 1.7 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2004-08-06 22:34:05 $
+ *  @version $Revision: 1.8 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2004-08-07 00:06:06 $
  *
  *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
@@ -15,5 +16,7 @@
 
 /******************************************************************************/
+
 /*  INCLUDE FILES                                                             */
+
 /******************************************************************************/
 #include <stdlib.h>
@@ -24,5 +27,7 @@
 
 /******************************************************************************/
+
 /*  DEFINE STATEMENTS                                                         */
+
 /******************************************************************************/
 
@@ -30,5 +35,7 @@
 
 /******************************************************************************/
+
 /*  TYPE DEFINITIONS                                                          */
+
 /******************************************************************************/
 
@@ -36,5 +43,7 @@
 
 /*****************************************************************************/
+
 /*  GLOBAL VARIABLES                                                         */
+
 /*****************************************************************************/
 
@@ -42,5 +51,7 @@
 
 /*****************************************************************************/
+
 /*  FILE STATIC VARIABLES                                                    */
+
 /*****************************************************************************/
 
@@ -48,5 +59,7 @@
 
 /*****************************************************************************/
+
 /*  FUNCTION IMPLEMENTATION - LOCAL                                          */
+
 /*****************************************************************************/
 
@@ -54,10 +67,10 @@
 
 /*****************************************************************************/
+
 /* FUNCTION IMPLEMENTATION - PUBLIC                                          */
+
 /*****************************************************************************/
 
-char *psStringCopy(
-    const char*  str
-)
+char *psStringCopy(const char *str)
 {
     // Allocate memory using psAlloc function
@@ -67,16 +80,12 @@
 }
 
-char *psStringNCopy(
-    const char*  str,
-    int          nChar
-)
+char *psStringNCopy(const char *str, int nChar)
 {
     char *returnValue = NULL;
 
     // Check the number of characters to copy is non-negative
-    if ( nChar < 0 ) {
+    if (nChar < 0) {
         // Log error message and return NULL
-        psError(__FILE__,"psStringNCopy with negative count specified %d",
-                nChar);
+        psError(__FILE__, "psStringNCopy with negative count specified %d", nChar);
         return NULL;
     }
@@ -84,14 +93,11 @@
     // Copy input string to memory allocated up to nChar characters
     // Return the copy
-    returnValue = strncpy(psAlloc((size_t)nChar + 1), str, (size_t)nChar);
+    returnValue = strncpy(psAlloc((size_t) nChar + 1), str, (size_t) nChar);
 
     // Ensure the last byte is NULL character
-    if ( nChar > 0 ) {
-        returnValue[nChar-1] = '\0';
+    if (nChar > 0) {
+        returnValue[nChar - 1] = '\0';
     }
-
     // Return the string pointer
     return returnValue;
 }
-
-
