IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Feb 2, 2005, 2:54:13 PM (21 years ago)
Author:
desonia
Message:

Added SWIG and autoconf.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/psLib/src/collections/psVector.c

    r2676 r3115  
    1010*  @author Robert DeSonia, MHPCC
    1111*
    12 *  @version $Revision: 1.32 $ $Name: not supported by cvs2svn $
    13 *  @date $Date: 2004-12-09 21:30:43 $
     12*  @version $Revision: 1.33 $ $Name: not supported by cvs2svn $
     13*  @date $Date: 2005-02-03 00:54:10 $
    1414*
    1515*  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
     
    2828#include "psCollectionsErrors.h"
    2929
    30 static void vectorFree(psVector* restrict psVec);
    31 
    32 
    33 static void vectorFree(psVector* restrict psVec)
     30static void vectorFree(psVector* psVec);
     31
     32
     33static void vectorFree(psVector* psVec)
    3434{
    3535    if (psVec == NULL) {
     
    6464}
    6565
    66 psVector* psVectorRealloc(psVector* restrict in, psU32 nalloc)
     66psVector* psVectorRealloc(psVector* in, psU32 nalloc)
    6767{
    6868    psS32 elementSize = 0;
     
    8787}
    8888
    89 psVector* psVectorRecycle(psVector* restrict in, psU32 n, psElemType type)
     89psVector* psVectorRecycle(psVector* in, psU32 n, psElemType type)
    9090{
    9191    psS32 byteSize;
     
    218218}
    219219
    220 psVector* psVectorSort(psVector* restrict outVector, const psVector* restrict inVector)
     220psVector* psVectorSort(psVector* outVector, const psVector* inVector)
    221221{
    222222    psS32 N = 0;
     
    302302}
    303303
    304 psVector* psVectorSortIndex(psVector* restrict outVector, const psVector* restrict inVector)
     304psVector* psVectorSortIndex(psVector* outVector, const psVector* inVector)
    305305{
    306306    psS32 N = 0;
Note: See TracChangeset for help on using the changeset viewer.