IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Aug 9, 2004, 1:34:58 PM (22 years ago)
Author:
desonia
Message:

cleanup of some indent-induced madness.

File:
1 edited

Legend:

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

    r1426 r1440  
    1212 *  @author Ross Harman, MHPCC
    1313 *
    14  *  @version $Revision: 1.13 $ $Name: not supported by cvs2svn $
    15  *  @date $Date: 2004-08-09 22:44:25 $
     14 *  @version $Revision: 1.14 $ $Name: not supported by cvs2svn $
     15 *  @date $Date: 2004-08-09 23:34:57 $
    1616 *
    1717 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
     
    3636    unsigned int nalloc;        ///< Total number of elements available.
    3737    unsigned int n;             ///< Number of elements in use.
    38     psPTR *data;                ///< An Array of pointer elements
     38    psPTR* data;                ///< An Array of pointer elements
    3939}
    4040psArray;
     
    5151 * data
    5252 *
    53  * @return psArray*: Pointer to psArray.
     53 * @return psArray* : Pointer to psArray.
    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
     
    6262 * of data.
    6363 *
    64  * @return psArray*: Pointer to psArray.
     64 * @return psArray* : Pointer to psArray.
    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
     
    8484 *  to specify how the objects on the array should be sorted.
    8585 *
    86  *  @return psArray*       The sorted array.
     86 *  @return psArray* The sorted array.
    8787 */
    88 psArray *psArraySort(psArray * in, psComparePtrFcn compare);
     88psArray* psArraySort(psArray* in, psComparePtrFcn compare);
    8989
    9090/// @}
Note: See TracChangeset for help on using the changeset viewer.