Changeset 1407 for trunk/psLib/src/sys/psString.h
- Timestamp:
- Aug 6, 2004, 2:06:06 PM (22 years ago)
- File:
-
- 1 edited
-
trunk/psLib/src/sys/psString.h (modified) (6 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psLib/src/sys/psString.h
r974 r1407 1 1 2 /** @file psString.h 2 3 * … … 10 11 * @author Eric Van Alst, MHPCC 11 12 * 12 * @version $Revision: 1. 5$ $Name: not supported by cvs2svn $13 * @date $Date: 2004-0 6-10 01:58:06 $13 * @version $Revision: 1.6 $ $Name: not supported by cvs2svn $ 14 * @date $Date: 2004-08-07 00:06:06 $ 14 15 * 15 16 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 17 18 18 19 #ifndef PS_STRING_H 19 # define PS_STRING_H20 # define PS_STRING_H 20 21 21 22 /******************************************************************************/ 23 22 24 /* DEFINE STATEMENTS */ 25 23 26 /******************************************************************************/ 24 27 25 28 /** This macro will convert the arguement to a quoted string */ 26 # define PS_STRING(S) #S29 # define PS_STRING(S) #S 27 30 28 31 /******************************************************************************/ 32 29 33 /* TYPE DEFINITIONS */ 34 30 35 /******************************************************************************/ 31 36 … … 33 38 34 39 /*****************************************************************************/ 40 35 41 /* FUNCTION PROTOTYPES */ 42 36 43 /*****************************************************************************/ 37 44 38 45 // Doxygen group tags 46 39 47 /** @addtogroup SysUtils 40 48 * @{ … … 49 57 * 50 58 */ 51 char *psStringCopy(52 const char *str /**< Input string of characters to copy */53 );54 59 60 char *psStringCopy(const char *str 61 /**< Input string of characters to copy */ 62 ); 55 63 56 64 /** Copies the input string up to the specified number of characters … … 67 75 * 68 76 */ 77 69 78 /*@null@*/ 70 char *psStringNCopy(71 const char *str, /**< Input string of characters to copy */72 int nChar /**< Number of bytes to allocate for string copy */73 );74 79 75 /* @} */ // Doxygen - End of SystemGroup Functions 80 char *psStringNCopy(const char *str, 81 /**< Input string of characters to copy */ 82 83 int nChar 84 /**< Number of bytes to allocate for string copy */ 85 ); 86 87 /* @} */// Doxygen - End of SystemGroup Functions 76 88 77 89 #endif 78
Note:
See TracChangeset
for help on using the changeset viewer.
