IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Jun 22, 2005, 1:48:39 PM (21 years ago)
Author:
desonia
Message:

changed parameters of the name 'table' to 'hash'.

File:
1 edited

Legend:

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

    r4343 r4352  
    1111 *  @author GLG, MHPCC
    1212 *
    13  *  @version $Revision: 1.11 $ $Name: not supported by cvs2svn $
    14  *  @date $Date: 2005-06-22 03:00:27 $
     13 *  @version $Revision: 1.12 $ $Name: not supported by cvs2svn $
     14 *  @date $Date: 2005-06-22 23:48:39 $
    1515 *
    1616 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    5252/// Insert entry into table.
    5353bool psHashAdd(
    54     psHash* table,                     ///< The table to insert in.
     54    psHash* hash,                      ///< The table to insert in.
    5555    const char *key,                   ///< The key to use.
    5656    psPtr data                         ///< The data to insert.
     
    5959/// Lookup key in table.
    6060psPtr psHashLookup(
    61     const psHash* table,               ///< The table to lookup key in.
     61    const psHash* hash,                ///< The table to lookup key in.
    6262    const char *key                    ///< The key to lookup.
    6363);
     
    6565/// Remove key from table.
    6666bool psHashRemove(
    67     psHash* table,                     ///< The table to lookup key in.
     67    psHash* hash,                      ///< The table to lookup key in.
    6868    const char *key                    ///< The key to lookup.
    6969);
     
    7979 */
    8080psArray* psHashToArray(
    81     const psHash* table                ///< The table to convert to psArray.
     81    const psHash* hash                 ///< The table to convert to psArray.
    8282);
    8383
Note: See TracChangeset for help on using the changeset viewer.