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.c

    r1407 r1440  
    99 *  @author Ross Harman, MHPCC
    1010 *
    11  *  @version $Revision: 1.12 $ $Name: not supported by cvs2svn $
    12  *  @date $Date: 2004-08-07 00:06:06 $
     11 *  @version $Revision: 1.13 $ $Name: not supported by cvs2svn $
     12 *  @date $Date: 2004-08-09 23:34:57 $
    1313 *
    1414 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
     
    3232
    3333/*****************************************************************************/
    34 static void arrayFree(psArray * restrict psArr);
     34static void arrayFree(psArray* restrict psArr);
    3535
    3636/*****************************************************************************/
     
    3939
    4040/*****************************************************************************/
    41 psArray *psArrayAlloc(unsigned int nalloc)
     41psArray* psArrayAlloc(unsigned int nalloc)
    4242{
    43     psArray *psArr = NULL;
     43    psArray* psArr = NULL;
    4444
    4545    // Invalid nalloc
     
    4949    }
    5050    // Create vector struct
    51     psArr = (psArray *) psAlloc(sizeof(psArray));
     51    psArr = (psArray* ) psAlloc(sizeof(psArray));
    5252    p_psMemSetDeallocator(psArr, (psFreeFcn) arrayFree);
    5353
     
    6161}
    6262
    63 psArray *psArrayRealloc(unsigned int nalloc, psArray * restrict in)
     63psArray* psArrayRealloc(unsigned int nalloc, psArray* restrict in)
    6464{
    6565    // Invalid nalloc
     
    8787}
    8888
    89 static void arrayFree(psArray * restrict psArr)
     89static void arrayFree(psArray* restrict psArr)
    9090{
    9191    if (psArr == NULL) {
     
    9898}
    9999
    100 void psArrayElementFree(psArray * restrict psArr)
     100void psArrayElementFree(psArray* restrict psArr)
    101101{
    102102
     
    111111}
    112112
    113 psArray *psArraySort(psArray * in, psComparePtrFcn compare)
     113psArray* psArraySort(psArray* in, psComparePtrFcn compare)
    114114{
    115115    if (in == NULL) {
Note: See TracChangeset for help on using the changeset viewer.