X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=x2p%2Fhash.h;h=7b2b6684921a5b46324412063a228e2d1f3c1bea;hb=5999ed7d8e1601dce57087d0b16df2b7b3923d34;hp=f61a29f4e6253d30bbeae71dd3f93b60fc6fba7a;hpb=9c8d0b29b7bd1493cc1d95591b17902820e5579c;p=p5sagit%2Fp5-mst-13.2.git diff --git a/x2p/hash.h b/x2p/hash.h index f61a29f..7b2b668 100644 --- a/x2p/hash.h +++ b/x2p/hash.h @@ -1,6 +1,6 @@ /* $RCSfile: hash.h,v $$Revision: 4.1 $$Date: 92/08/07 18:29:21 $ * - * Copyright (c) 1991, Larry Wall + * Copyright (c) 1991-2001, Larry Wall * * You may distribute under the terms of either the GNU General Public * License or the Artistic License, as specified in the README file. @@ -41,12 +41,12 @@ struct htbl { HENT *tbl_eiter; /* current entry of iterator */ }; -bool hdelete _((HASH *tb, char *key)); -STR * hfetch _(( HASH *tb, char *key )); -int hiterinit _(( HASH *tb )); -char * hiterkey _(( HENT *entry )); -HENT * hiternext _(( HASH *tb )); -STR * hiterval _(( HENT *entry )); -HASH * hnew _(( void )); -void hsplit _(( HASH *tb )); -bool hstore _(( HASH *tb, char *key, STR *val )); +bool hdelete (HASH *tb, char *key); +STR * hfetch ( HASH *tb, char *key ); +int hiterinit ( HASH *tb ); +char * hiterkey ( HENT *entry ); +HENT * hiternext ( HASH *tb ); +STR * hiterval ( HENT *entry ); +HASH * hnew ( void ); +void hsplit ( HASH *tb ); +bool hstore ( HASH *tb, char *key, STR *val );