Changeset 291 for trunk/archive/pslib/include/psMisc.h
- Timestamp:
- Mar 23, 2004, 4:48:25 PM (22 years ago)
- File:
-
- 1 edited
-
trunk/archive/pslib/include/psMisc.h (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/archive/pslib/include/psMisc.h
r266 r291 15 15 void psAbort(const char *name, ///< Category of code that caused the abort 16 16 const char *fmt, ///< Format 17 ... )///< Extra arguments to use format18 ;17 ... ///< Extra arguments to use format 18 ); 19 19 20 20 /// Prints an error message and doesn't abort 21 21 void psError(const char *name, ///< Category of code that caused the abort 22 22 const char *fmt, ///< Format 23 ... )///< Extra arguments to use format24 ;23 ... ///< Extra arguments to use format 24 ); 25 25 26 26 /// Allocates and returns a copy of a string 27 char *psStringCopy(const char *str )///< string to copy28 ;27 char *psStringCopy(const char *str ///< string to copy 28 ); 29 29 30 30 /// Allocates nChar and returns a copy of the string or segment 31 char *psStringNCopy(const char *str, int nChar) ///< string to copy 32 ; 31 char *psStringNCopy(const char *str, ///< string to copy 32 int nChar //!< Number of characters (including \0 ) 33 ); 33 34 34 35 /* \} */ // End of SystemGroup Functions
Note:
See TracChangeset
for help on using the changeset viewer.
