IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Aug 9, 2004, 12:44:25 PM (22 years ago)
Author:
desonia
Message:

fixed some stupid indent-induced formating problems and added doxygen
comments.

File:
1 edited

Legend:

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

    r1407 r1426  
    1212 *  @author Ross Harman, MHPCC
    1313 *
    14  *  @version $Revision: 1.12 $ $Name: not supported by cvs2svn $
    15  *  @date $Date: 2004-08-07 00:06:06 $
     14 *  @version $Revision: 1.13 $ $Name: not supported by cvs2svn $
     15 *  @date $Date: 2004-08-09 22:44:25 $
    1616 *
    1717 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
     
    3434typedef struct
    3535{
    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 elements
     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 elements
    3939}
    4040psArray;
     
    5454 *
    5555 */
    56 psArray *psArrayAlloc(unsigned int nalloc       // /< Total number of elements to make available.
     56psArray *psArrayAlloc(unsigned int nalloc       ///< Total number of elements to make available.
    5757                     );
    5858
     
    6565 *
    6666 */
    67 psArray *psArrayRealloc(unsigned int nalloc,    // /< Total number of elements to make available.
    68                         psArray * restrict psArr        // /< array to reallocate.
     67psArray *psArrayRealloc(unsigned int nalloc,    ///< Total number of elements to make available.
     68                        psArray * restrict psArr        ///< array to reallocate.
    6969                       );
    7070
     
    7676 *
    7777 */
    78 void psArrayElementFree(psArray * restrict psArr        // /< Void pointer array to destroy.
     78void psArrayElementFree(psArray * restrict psArr        ///< Void pointer array to destroy.
    7979                       );
    8080
Note: See TracChangeset for help on using the changeset viewer.