Index: trunk/psLib/src/sys/psString.c
===================================================================
--- trunk/psLib/src/sys/psString.c	(revision 3997)
+++ trunk/psLib/src/sys/psString.c	(revision 4409)
@@ -12,6 +12,6 @@
  *  @author Eric Van Alst, MHPCC
  *
- *  @version $Revision: 1.17 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2005-05-20 01:41:17 $
+ *  @version $Revision: 1.18 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2005-06-28 20:17:52 $
  *
  *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
@@ -26,13 +26,13 @@
 #include "psSysUtilsErrors.h"
 
-char *psStringCopy(const char *str)
+psString psStringCopy(const char *string)
 {
     // Allocate memory using psAlloc function
     // Copy input string to memory just allocated
     // Return the copy
-    return strcpy(psAlloc(strlen(str) + 1), str);
+    return strcpy(psAlloc(strlen(string) + 1), string);
 }
 
-char *psStringNCopy(const char *str, psS32 nChar)
+psString psStringNCopy(const char *string, int nChar)
 {
     char *returnValue = NULL;
@@ -49,5 +49,5 @@
     // 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), string, (size_t) nChar);
 
     // Ensure the last byte is NULL character
