IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

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

* empty log message *

File:
1 edited

Legend:

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

    r3107 r3116  
    1010 *  @ingroup LinkedList
    1111 *
    12  *  @version $Revision: 1.19 $ $Name: not supported by cvs2svn $
    13  *  @date $Date: 2005-02-02 20:21:48 $
     12 *  @version $Revision: 1.20 $ $Name: not supported by cvs2svn $
     13 *  @date $Date: 2005-02-03 00:56:59 $
    1414 *
    1515 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
     
    119119 */
    120120psBool psListAdd(
    121     psList* restrict list,             ///< list to add item to
     121    psList* list,                      ///< list to add item to
    122122    psS32 location,                    ///< index, PS_LIST_HEAD, PS_LIST_TAIL, or numbered location.
    123123    psPtr data                         ///< data item to add.  If NULL, list is not modified.
     
    147147 */
    148148psBool psListRemove(
    149     psList* restrict list,             ///< list to remove element from
     149    psList* list,                      ///< list to remove element from
    150150    psS32 location                     ///< index of item
    151151);
     
    156156 */
    157157psBool psListRemoveData(
    158     psList* restrict list,             ///< list to remove element from
     158    psList* list,                      ///< list to remove element from
    159159    psPtr data                         ///< data item to find and remove
    160160);
     
    168168 */
    169169psPtr psListGet(
    170     psList* restrict list,             ///< list to retrieve element from
     170    psList* list,                      ///< list to retrieve element from
    171171    psS32 location                     ///< index number, PS_LIST_HEAD, or PS_LIST_TAIL
    172172);
     
    178178 */
    179179psPtr psListGetAndIncrement(
    180     psListIterator* restrict iterator  ///< iterator to move
     180    psListIterator* iterator           ///< iterator to move
    181181);
    182182
     
    187187 */
    188188psPtr psListGetAndDecrement(
    189     psListIterator* restrict iterator  ///< iterator to move
     189    psListIterator* iterator           ///< iterator to move
    190190);
    191191
Note: See TracChangeset for help on using the changeset viewer.