Changeset 8598 for trunk/psLib/src/sys/psString.h
- Timestamp:
- Aug 25, 2006, 11:50:07 AM (20 years ago)
- File:
-
- 1 edited
-
trunk/psLib/src/sys/psString.h (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psLib/src/sys/psString.h
r7901 r8598 14 14 * @author David Robbins, MHPCC 15 15 * 16 * @version $Revision: 1.2 6$ $Name: not supported by cvs2svn $17 * @date $Date: 2006-0 7-14 02:26:25$16 * @version $Revision: 1.27 $ $Name: not supported by cvs2svn $ 17 * @date $Date: 2006-08-25 21:49:47 $ 18 18 * 19 19 * Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii … … 24 24 25 25 #include <sys/types.h> 26 #include <stdarg.h> 26 27 #include "psType.h" 27 28 #include "psList.h" … … 100 101 ); 101 102 103 /** Appends a format onto a string 104 * 105 * This function shall allocate a new string if dest is NULL. dest shall be 106 * automatically extended to the size of the new string. 107 * 108 * @return ssize_t: The length of the new string (excluding '\0') 109 */ 110 ssize_t psStringAppendV( 111 char **dest, ///< existing string 112 const char *format, ///< format to append 113 va_list ap ///< va_list of format arguments 114 ); 115 102 116 /** Prepends a format onto a string 103 117 *
Note:
See TracChangeset
for help on using the changeset viewer.
