Changeset 1448 for trunk/psLib/src/sysUtils/psString.h
- Timestamp:
- Aug 9, 2004, 3:55:34 PM (22 years ago)
- File:
-
- 1 edited
-
trunk/psLib/src/sysUtils/psString.h (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psLib/src/sysUtils/psString.h
r1441 r1448 1 2 1 /** @file psString.h 3 2 * … … 11 10 * @author Eric Van Alst, MHPCC 12 11 * 13 * @version $Revision: 1. 7$ $Name: not supported by cvs2svn $14 * @date $Date: 2004-08- 09 23:40:55$12 * @version $Revision: 1.8 $ $Name: not supported by cvs2svn $ 13 * @date $Date: 2004-08-10 01:55:34 $ 15 14 * 16 15 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 20 19 #define PS_STRING_H 21 20 22 /******************************************************************************/23 21 24 /* DEFINE STATEMENTS */ 25 26 /******************************************************************************/ 27 28 /** This macro will convert the arguement to a quoted string */ 22 /** This macro will convert the argument to a quoted string */ 29 23 #define PS_STRING(S) #S 30 31 /******************************************************************************/32 33 /* TYPE DEFINITIONS */34 35 /******************************************************************************/36 37 // None38 39 /*****************************************************************************/40 41 /* FUNCTION PROTOTYPES */42 43 /*****************************************************************************/44 24 45 25 // Doxygen group tags … … 54 34 * plus one and copy the input string to the newly allocated memory. 55 35 * 56 * @return char*Copy of input string36 * @return char* Copy of input string 57 37 * 58 38 */ 59 60 char *psStringCopy(const char *str61 /**< Input string of characters to copy */62 );39 char *psStringCopy( 40 const char *str 41 /**< Input string of characters to copy */ 42 ); 63 43 64 44 /** Copies the input string up to the specified number of characters … … 78 58 /*@null@*/ 79 59 80 char *psStringNCopy(const char *str, 81 /**< Input string of characters to copy */ 60 char *psStringNCopy( 61 const char *str, 62 /**< Input string of characters to copy */ 82 63 83 int nChar84 /**< Number of bytes to allocate for string copy */85 );64 int nChar 65 /**< Number of bytes to allocate for string copy */ 66 ); 86 67 87 68 /* @} */// Doxygen - End of SystemGroup Functions
Note:
See TracChangeset
for help on using the changeset viewer.
