Changeset 4409 for trunk/psLib/src/sys/psString.h
- Timestamp:
- Jun 28, 2005, 10:17:52 AM (21 years ago)
- File:
-
- 1 edited
-
trunk/psLib/src/sys/psString.h (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psLib/src/sys/psString.h
r4162 r4409 13 13 * @author Eric Van Alst, MHPCC 14 14 * 15 * @version $Revision: 1.1 3$ $Name: not supported by cvs2svn $16 * @date $Date: 2005-06- 08 23:40:45$15 * @version $Revision: 1.14 $ $Name: not supported by cvs2svn $ 16 * @date $Date: 2005-06-28 20:17:52 $ 17 17 * 18 18 * Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii … … 39 39 * plus one and copy the input string to the newly allocated memory. 40 40 * 41 * @return char*Copy of input string41 * @return psString: Copy of input string 42 42 * 43 43 */ 44 char *psStringCopy( 45 const char *str 46 /**< Input string of characters to copy */ 44 psString psStringCopy( 45 const char *string ///< Input string of characters to copy 47 46 ); 48 47 … … 57 56 * be set to NULL. 58 57 * 59 * @return char*Copy of input string58 * @return psString: Copy of input string 60 59 * 61 60 */ … … 63 62 /*@null@*/ 64 63 65 char *psStringNCopy( 66 const char *str, 67 /**< Input string of characters to copy */ 68 69 psS32 nChar 70 /**< Number of bytes to allocate for string copy */ 64 psString psStringNCopy( 65 const char *string, ///< Input string of characters to copy 66 int nChar ///< Number of bytes to allocate for string copy 71 67 ); 72 68
Note:
See TracChangeset
for help on using the changeset viewer.
