IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Sep 28, 2004, 1:26:49 PM (22 years ago)
Author:
desonia
Message:

changed function prototypes to match changes in the SDRS.

File:
1 edited

Legend:

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

    r1471 r1920  
    1212 *  @author Ross Harman, MHPCC
    1313 *
    14  *  @version $Revision: 1.16 $ $Name: not supported by cvs2svn $
    15  *  @date $Date: 2004-08-11 19:47:31 $
     14 *  @version $Revision: 1.17 $ $Name: not supported by cvs2svn $
     15 *  @date $Date: 2004-09-28 23:26:48 $
    1616 *
    1717 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
     
    2020#ifndef PS_ARRAY_H
    2121#define PS_ARRAY_H
     22
     23#include<stdbool.h>
    2224
    2325#include "psType.h"
     
    6769 */
    6870psArray* psArrayRealloc(
    69     unsigned int nalloc,               ///< Total number of elements to make available.
    70     psArray* restrict psArr            ///< array to reallocate.
     71    psArray* restrict psArr,           ///< array to reallocate.
     72    unsigned int nalloc                ///< Total number of elements to make available.
     73);
     74
     75/** Remove an element from the array
     76 *
     77 *  Finds and removes the specified data pointer from the list. 
     78 *
     79 * @return bool:  TRUE if the specified data pointer was found and removed,
     80 *                otherwise FALSE.
     81 *
     82 */
     83bool psArrayRemove(
     84    psArray* psArr,                    ///< array to operate on
     85    psPTR data                         ///< the data pointer to remove from psArray
    7186);
    7287
Note: See TracChangeset for help on using the changeset viewer.