IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Apr 21, 2004, 11:05:39 AM (22 years ago)
Author:
harman
Message:

Added array of void pointers

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/psLib/src/collections/psArray.h

    r493 r495  
    88 *  @author Ross Harman, MHPCC
    99 *   
    10  *  @version $Revision: 1.4 $ $Name: not supported by cvs2svn $
    11  *  @date $Date: 2004-04-21 18:53:10 $
     10 *  @version $Revision: 1.5 $ $Name: not supported by cvs2svn $
     11 *  @date $Date: 2004-04-21 21:05:39 $
    1212 *
    1313 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
     
    198198 */
    199199psFloatArray *psFloatArrayRealloc(
    200     psFloatArray *psArr,  ///< Array to reallocate.
     200    psFloatArray *psArr,    ///< Array to reallocate.
    201201    int nalloc              ///< Total number of elements to make available.
    202202);
     
    229229 */
    230230psDoubleArray *psDoubleArrayRealloc(
    231     psDoubleArray *psArr, ///< Array to reallocate.
     231    psDoubleArray *psArr,   ///< Array to reallocate.
    232232    int nalloc              ///< Total number of elements to make available.
    233233);
     
    290290 */
    291291psVoidPtrArray *psVoidPtrArrayRealloc(
    292     psVoidPtrArray *psArr,  ///< Array to reallocate.
    293     int nalloc              ///< Number of elements.
     292    psVoidPtrArray *restrict psArr, ///< Array to reallocate.
     293    int nalloc,                     ///< Number of elements.
     294    void (*elemFree)(void *)        ///< Callback function responsible for removing array data.
    294295);
    295296
Note: See TracChangeset for help on using the changeset viewer.