IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
May 18, 2005, 3:09:57 PM (21 years ago)
Author:
Paul Price
Message:

Adding const qualifiers where missing in the docs.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/pap_branch_050513/psLib/src/collections/psHash.c

    r3769 r3966  
    1212*  @author Robert DeSonia, MHPCC
    1313*
    14 *  @version $Revision: 1.15 $ $Name: not supported by cvs2svn $
    15 *  @date $Date: 2005-04-26 19:53:30 $
     14*  @version $Revision: 1.15.2.1 $ $Name: not supported by cvs2svn $
     15*  @date $Date: 2005-05-19 01:09:56 $
    1616*
    1717*  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    4242    The linked list
    4343 *****************************************************************************/
    44 psList* psHashKeyList(psHash* table)
     44psList* psHashKeyList(const psHash* table)
    4545{
    4646    psS32 i = 0;                  // Loop index variable
     
    344344psBool psHashAdd(psHash* table,
    345345                 const char *key,
    346                  psPtr data)
     346                 const psPtr data)
    347347{
    348348    if (table == NULL) {
     
    376376    The data associated with that key.
    377377 *****************************************************************************/
    378 psPtr psHashLookup(psHash* table,      // table to lookup key in
     378psPtr psHashLookup(const psHash* table, // table to lookup key in
    379379                   const char *key)     // key to lookup
    380380{
     
    429429}
    430430
    431 psArray* psHashToArray(psHash* table)
     431psArray* psHashToArray(const psHash* table)
    432432{
    433433
Note: See TracChangeset for help on using the changeset viewer.