IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Jun 11, 2004, 7:50:01 PM (22 years ago)
Author:
gusciora
Message:

cosmetics...

File:
1 edited

Legend:

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

    r1012 r1013  
    11/** @file  psHash.h
    2  *
    32 *  @brief Contains support for basic hashing functions.
     3 *  @ingroup HashTable
    44 *
    55 *  This file will hold the prototypes for defining a hash table with arbitrary
     
    77 *  data from that hash table, and listing all keys defined in the hash table.
    88 *
    9  *  @ingroup HashTable
    10  *
    119 *  @author Robert Lupton, Princeton University
    1210 *  @author George Gusciora, MHPCC
    1311 *   
    14  *  @version $Revision: 1.12 $ $Name: not supported by cvs2svn $
    15  *  @date $Date: 2004-06-12 04:55:21 $
     12 *  @version $Revision: 1.13 $ $Name: not supported by cvs2svn $
     13 *  @date $Date: 2004-06-12 05:50:01 $
    1614 *
    1715 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
    1816 */
    19 
    2017#if !defined(PS_HASH_H)
    2118#define PS_HASH_H
     
    2522 */
    2623#include "psList.h"
    27 
    2824
    2925/** A bucket that holds an item of data. */
     
    4036typedef struct psHash
    4137{
    42     int nbucket;                        //< Number of buckets in hash table.
    43     psHashBucket **buckets;             //< The bucket data.
     38    int nbucket;                        ///< Number of buckets in hash table.
     39    psHashBucket **buckets;             ///< The bucket data.
    4440}
    4541psHash;
    4642
    4743/// Allocate hash buckets in table.
    48 psHash *psHashAlloc(int nbucket);
     44psHash *psHashAlloc(int nbucket       ///< The number of buckets to allocate.
     45                   );
    4946
    5047/// Free hash buckets from table.
Note: See TracChangeset for help on using the changeset viewer.