IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 4367 for trunk/psLib/src/types


Ignore:
Timestamp:
Jun 22, 2005, 5:50:29 PM (21 years ago)
Author:
drobbin
Message:

changed files according to requested revisions outlined in apidelta-report-cycle6

Location:
trunk/psLib/src/types
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/psLib/src/types/psArray.c

    r4342 r4367  
    99 *  @author Ross Harman, MHPCC
    1010 *
    11  *  @version $Revision: 1.30 $ $Name: not supported by cvs2svn $
    12  *  @date $Date: 2005-06-22 02:05:41 $
     11 *  @version $Revision: 1.31 $ $Name: not supported by cvs2svn $
     12 *  @date $Date: 2005-06-23 03:50:29 $
    1313 *
    1414 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    147147}
    148148
    149 psArray* psArraySort(psArray* array, psComparePtrFcn func)
     149psArray* psArraySort(psArray* array, psComparePtrFunc func)
    150150{
    151151    if (array == NULL) {
  • trunk/psLib/src/types/psArray.h

    r4342 r4367  
    1212 *  @author Ross Harman, MHPCC
    1313 *
    14  *  @version $Revision: 1.26 $ $Name: not supported by cvs2svn $
    15  *  @date $Date: 2005-06-22 02:05:41 $
     14 *  @version $Revision: 1.27 $ $Name: not supported by cvs2svn $
     15 *  @date $Date: 2005-06-23 03:50:29 $
    1616 *
    1717 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    123123psArray* psArraySort(
    124124    psArray* array,                       ///< input array to sort.
    125     psComparePtrFcn func                  ///< the compare function
     125    psComparePtrFunc func                 ///< the compare function
    126126);
    127127
  • trunk/psLib/src/types/psList.c

    r4316 r4367  
    66 *  @author Robert Daniel DeSonia, MHPCC
    77 *
    8  *  @version $Revision: 1.37 $ $Name: not supported by cvs2svn $
    9  *  @date $Date: 2005-06-18 03:13:01 $
     8 *  @version $Revision: 1.38 $ $Name: not supported by cvs2svn $
     9 *  @date $Date: 2005-06-23 03:50:29 $
    1010 *
    1111 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    610610}
    611611
    612 psList* psListSort(psList* list, psComparePtrFcn compare)
     612psList* psListSort(psList* list, psComparePtrFunc func)
    613613{
    614614    psArray* arr;
     
    622622    psFree(list);
    623623
    624     arr = psArraySort(arr, compare);
     624    arr = psArraySort(arr, func);
    625625
    626626    // convert back to linked list
  • trunk/psLib/src/types/psList.h

    r4330 r4367  
    77 *  @ingroup LinkedList
    88 *
    9  *  @version $Revision: 1.27 $ $Name: not supported by cvs2svn $
    10  *  @date $Date: 2005-06-21 03:01:37 $
     9 *  @version $Revision: 1.28 $ $Name: not supported by cvs2svn $
     10 *  @date $Date: 2005-06-23 03:50:29 $
    1111 *
    1212 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    9999psListIterator* psListIteratorAlloc(
    100100    psList* list,                      ///< the psList to iterate with
    101     long location,                      ///< the initial starting point.
     101    long location,                     ///< the initial starting point.
    102102    ///<  This can be a numeric index, PS_LIST_HEAD, or PS_LIST_TAIL.
    103103    bool mutable                       ///< Is it permissible to modify list?
     
    221221psList* psListSort(
    222222    psList* list,                      ///< the list to sort
    223     psComparePtrFcn compare            ///< the comparison function
     223    psComparePtrFunc func              ///< the comparison function
    224224);
    225225
Note: See TracChangeset for help on using the changeset viewer.