Changeset 3866 for trunk/psLib/src/sys/psString.h
- Timestamp:
- May 6, 2005, 8:15:25 AM (21 years ago)
- File:
-
- 1 edited
-
trunk/psLib/src/sys/psString.h (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psLib/src/sys/psString.h
r3264 r3866 10 10 * @author Eric Van Alst, MHPCC 11 11 * 12 * @version $Revision: 1.1 0$ $Name: not supported by cvs2svn $13 * @date $Date: 2005-0 2-17 19:26:24$12 * @version $Revision: 1.11 $ $Name: not supported by cvs2svn $ 13 * @date $Date: 2005-05-06 18:15:25 $ 14 14 * 15 15 * Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii … … 19 19 #define PS_STRING_H 20 20 21 #include <sys/types.h> 21 22 #include "psType.h" 22 23 … … 67 68 ); 68 69 70 /** Appends a format onto a string 71 * 72 * This function shall allocate a new string if dest is NULL. dest shall be 73 * automatically extended to the size of the new string. 74 * 75 * @return The length of the new string (excluding '\0') 76 */ 77 78 ssize_t psStringAppend( 79 char **dest, ///< existing string 80 const char *format, ///< format to append 81 ... ///< format arguments 82 ); 83 84 /** Prepends a format onto a string 85 * 86 * This function shall allocate a new string if dest is NULL. dest shall be 87 * automatically extended to the size of the new string. 88 * 89 * @return The length of the new string (excluding '\0') 90 */ 91 92 ssize_t psStringPrepend( 93 char **dest, ///< existing string 94 const char *format, ///< format to append 95 ... ///< format arguments 96 ); 97 69 98 /* @} */// Doxygen - End of SystemGroup Functions 70 99
Note:
See TracChangeset
for help on using the changeset viewer.
