IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Aug 25, 2006, 11:50:07 AM (20 years ago)
Author:
jhoblitt
Message:

add psStringAppendV()
change psStringAppend() to be a wrapper around psStringAppendV()

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/psLib/src/sys/psString.h

    r7901 r8598  
    1414 *  @author David Robbins, MHPCC
    1515 *
    16  *  @version $Revision: 1.26 $ $Name: not supported by cvs2svn $
    17  *  @date $Date: 2006-07-14 02:26:25 $
     16 *  @version $Revision: 1.27 $ $Name: not supported by cvs2svn $
     17 *  @date $Date: 2006-08-25 21:49:47 $
    1818 *
    1919 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    2424
    2525#include <sys/types.h>
     26#include <stdarg.h>
    2627#include "psType.h"
    2728#include "psList.h"
     
    100101);
    101102
     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 */
     110ssize_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
    102116/** Prepends a format onto a string
    103117 *
Note: See TracChangeset for help on using the changeset viewer.