Changeset 1920 for trunk/psLib/src/collections/psArray.h
- Timestamp:
- Sep 28, 2004, 1:26:49 PM (22 years ago)
- File:
-
- 1 edited
-
trunk/psLib/src/collections/psArray.h (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psLib/src/collections/psArray.h
r1471 r1920 12 12 * @author Ross Harman, MHPCC 13 13 * 14 * @version $Revision: 1.1 6$ $Name: not supported by cvs2svn $15 * @date $Date: 2004-0 8-11 19:47:31$14 * @version $Revision: 1.17 $ $Name: not supported by cvs2svn $ 15 * @date $Date: 2004-09-28 23:26:48 $ 16 16 * 17 17 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 20 20 #ifndef PS_ARRAY_H 21 21 #define PS_ARRAY_H 22 23 #include<stdbool.h> 22 24 23 25 #include "psType.h" … … 67 69 */ 68 70 psArray* 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 */ 83 bool psArrayRemove( 84 psArray* psArr, ///< array to operate on 85 psPTR data ///< the data pointer to remove from psArray 71 86 ); 72 87
Note:
See TracChangeset
for help on using the changeset viewer.
