Changeset 12517 for trunk/psLib/src/sys/psString.h
- Timestamp:
- Mar 21, 2007, 11:37:58 AM (19 years ago)
- File:
-
- 1 edited
-
trunk/psLib/src/sys/psString.h (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psLib/src/sys/psString.h
r12296 r12517 11 11 * @author Joshua Hoblitt, University of Hawaii 12 12 * 13 * @version $Revision: 1. 39$ $Name: not supported by cvs2svn $14 * @date $Date: 2007-03- 07 22:30:23$13 * @version $Revision: 1.40 $ $Name: not supported by cvs2svn $ 14 * @date $Date: 2007-03-21 21:37:58 $ 15 15 * 16 16 * Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii … … 46 46 #ifdef DOXYGEN 47 47 psString psStringAlloc( 48 long nChar///< Size of psString to allocate.48 size_t nChar ///< Size of psString to allocate. 49 49 ); 50 50 #else // ifdef DOXYGEN … … 53 53 unsigned int lineno, ///< Line number of caller 54 54 const char *func, ///< Function name of caller 55 long nChar///< Size of psString to allocate.55 size_t nChar ///< Size of psString to allocate. 56 56 ); 57 57 #define psStringAlloc(nChar) \ … … 110 110 #ifdef DOXYGEN 111 111 psString psStringNCopy( 112 const char *string, ///< Input string of characters to copy113 unsigned int nChar///< Number of bytes to allocate for string copy112 const char *string, ///< Input string of characters to copy 113 size_t nChar ///< Number of bytes to allocate for string copy 114 114 ); 115 115 #else // ifdef DOXYGEN … … 119 119 const char *func, ///< Function name of caller 120 120 const char *string, ///< Input string of characters to copy 121 unsigned int nChar///< Number of bytes to allocate for string copy121 size_t nChar ///< Number of bytes to allocate for string copy 122 122 ); 123 123 #define psStringNCopy(string, nChar) \
Note:
See TracChangeset
for help on using the changeset viewer.
