- Timestamp:
- May 18, 2005, 3:09:57 PM (21 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/pap_branch_050513/psLib/src/collections/psHash.c
r3769 r3966 12 12 * @author Robert DeSonia, MHPCC 13 13 * 14 * @version $Revision: 1.15 $ $Name: not supported by cvs2svn $15 * @date $Date: 2005-0 4-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 $ 16 16 * 17 17 * Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii … … 42 42 The linked list 43 43 *****************************************************************************/ 44 psList* psHashKeyList( psHash* table)44 psList* psHashKeyList(const psHash* table) 45 45 { 46 46 psS32 i = 0; // Loop index variable … … 344 344 psBool psHashAdd(psHash* table, 345 345 const char *key, 346 psPtr data)346 const psPtr data) 347 347 { 348 348 if (table == NULL) { … … 376 376 The data associated with that key. 377 377 *****************************************************************************/ 378 psPtr psHashLookup( psHash* table,// table to lookup key in378 psPtr psHashLookup(const psHash* table, // table to lookup key in 379 379 const char *key) // key to lookup 380 380 { … … 429 429 } 430 430 431 psArray* psHashToArray( psHash* table)431 psArray* psHashToArray(const psHash* table) 432 432 { 433 433
Note:
See TracChangeset
for help on using the changeset viewer.
