IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Mar 23, 2004, 4:48:25 PM (22 years ago)
Author:
Paul Price
Message:

Fixed brackets.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/archive/pslib/include/psHash.h

    r257 r291  
    1616
    1717/// Allocate hash buckets in table.
    18 psHash *psHashAlloc(int nbucket)        ///< initial number of buckets
    19 ;
     18psHash *psHashAlloc(int nbucket         ///< initial number of buckets
     19    );
    2020
    2121/// Free hash buckets from table.
    2222void psHashFree(psHash *table,          ///< hash table to be freed
    23                 void (*itemFree)(void *item)) ///< how to free hashed data; or NULL
    24 ;
     23                void (*itemFree)(void *item) ///< how to free hashed data; or NULL
     24    );
    2525
    2626/// Insert entry into table.
     
    2828                   const char *key,     ///< key to use
    2929                   void *data,          ///< data to insert
    30                    void (*itemFree)(void *item)) ///< how to free hashed data; or NULL
    31 ;
     30                   void (*itemFree)(void *item) ///< how to free hashed data; or NULL
     31    );
    3232
    3333/// Lookup key in table.
    3434void *psHashLookup(psHash *table,       ///< table to lookup key in
    35                    const char *key)     ///< key to lookup
    36 ;
     35                   const char *key      ///< key to lookup
     36    );
    3737
    3838/// Remove key from table.
    3939void *psHashRemove(psHash *table,       ///< table to lookup key in
    40                    const char *key)     ///< key to lookup
    41 ;
     40                   const char *key      ///< key to lookup
     41    );
    4242
    4343/* \} */ // End of DataGroup Functions
Note: See TracChangeset for help on using the changeset viewer.