IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Aug 11, 2004, 9:47:31 AM (22 years ago)
Author:
desonia
Message:

doxygen comment cleanup.

File:
1 edited

Legend:

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

    r1441 r1471  
    1212 *  @author Ross Harman, MHPCC
    1313 *
    14  *  @version $Revision: 1.15 $ $Name: not supported by cvs2svn $
    15  *  @date $Date: 2004-08-09 23:40:55 $
     14 *  @version $Revision: 1.16 $ $Name: not supported by cvs2svn $
     15 *  @date $Date: 2004-08-11 19:47:31 $
    1616 *
    1717 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
     
    5454 *
    5555 */
    56 psArray* psArrayAlloc(unsigned int nalloc       ///< Total number of elements to make available.
    57                      );
     56psArray* psArrayAlloc(
     57    unsigned int nalloc                ///< Total number of elements to make available.
     58);
    5859
    5960/** Reallocate an array.
     
    6566 *
    6667 */
    67 psArray* psArrayRealloc(unsigned int nalloc,    ///< Total number of elements to make available.
    68                         psArray* restrict psArr        ///< array to reallocate.
    69                        );
     68psArray* psArrayRealloc(
     69    unsigned int nalloc,               ///< Total number of elements to make available.
     70    psArray* restrict psArr            ///< array to reallocate.
     71);
    7072
    7173/** Deallocate/Dereference elements of an array.
     
    7678 *
    7779 */
    78 void psArrayElementFree(psArray* restrict psArr        ///< Void pointer array to destroy.
    79                        );
     80void psArrayElementFree(
     81    psArray* restrict psArr            ///< Void pointer array to destroy.
     82);
    8083
    8184/** Sort the array according to an external compare function.
     
    8487 *  to specify how the objects on the array should be sorted.
    8588 *
     89 *  The comparison function must return an integer less than, equal to, or
     90 *  greater than zero if the first argument is considered to be respectively
     91 *  less than, equal to, or greater than the second.
     92 *
     93 *  If two members compare as equal, their order in the sorted array is
     94 *  undefined.
     95 *
    8696 *  @return psArray* The sorted array.
    8797 */
    88 psArray* psArraySort(psArray* in, psComparePtrFcn compare);
     98psArray* psArraySort(
     99    psArray* in,                       ///< input array to sort.
     100    psComparePtrFcn compare            ///< the compare function
     101);
    89102
    90103/// @}
Note: See TracChangeset for help on using the changeset viewer.