Changeset 1426 for trunk/psLib/src/collections/psArray.h
- Timestamp:
- Aug 9, 2004, 12:44:25 PM (22 years ago)
- File:
-
- 1 edited
-
trunk/psLib/src/collections/psArray.h (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psLib/src/collections/psArray.h
r1407 r1426 12 12 * @author Ross Harman, MHPCC 13 13 * 14 * @version $Revision: 1.1 2$ $Name: not supported by cvs2svn $15 * @date $Date: 2004-08-0 7 00:06:06$14 * @version $Revision: 1.13 $ $Name: not supported by cvs2svn $ 15 * @date $Date: 2004-08-09 22:44:25 $ 16 16 * 17 17 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 34 34 typedef struct 35 35 { 36 unsigned int nalloc; // /< Total number of elements available.37 unsigned int n; // /< Number of elements in use.38 psPTR *data; // /< An Array of pointer elements36 unsigned int nalloc; ///< Total number of elements available. 37 unsigned int n; ///< Number of elements in use. 38 psPTR *data; ///< An Array of pointer elements 39 39 } 40 40 psArray; … … 54 54 * 55 55 */ 56 psArray *psArrayAlloc(unsigned int nalloc // /< Total number of elements to make available.56 psArray *psArrayAlloc(unsigned int nalloc ///< Total number of elements to make available. 57 57 ); 58 58 … … 65 65 * 66 66 */ 67 psArray *psArrayRealloc(unsigned int nalloc, // /< Total number of elements to make available.68 psArray * restrict psArr // /< array to reallocate.67 psArray *psArrayRealloc(unsigned int nalloc, ///< Total number of elements to make available. 68 psArray * restrict psArr ///< array to reallocate. 69 69 ); 70 70 … … 76 76 * 77 77 */ 78 void psArrayElementFree(psArray * restrict psArr // /< Void pointer array to destroy.78 void psArrayElementFree(psArray * restrict psArr ///< Void pointer array to destroy. 79 79 ); 80 80
Note:
See TracChangeset
for help on using the changeset viewer.
