diff options
author | Robert James Kaes <rjkaes@users.sourceforge.net> | 2001-08-26 21:07:27 +0000 |
---|---|---|
committer | Robert James Kaes <rjkaes@users.sourceforge.net> | 2001-08-26 21:07:27 +0000 |
commit | 849345e88bd3bdb2bde1e531a3815308dc3e7bf0 (patch) | |
tree | 48adee5b6ab80f758c457aaf14eb7fcf887d1d20 /src/anonymous.h | |
parent | 99dfce8f494300de982997214a1ad1b1f956ff7b (diff) |
Removed the anon_new() function and moved it's functionality into
anonymous_insert(). Also renamed all the anon_* functions to anonymous_*
function.
Diffstat (limited to 'src/anonymous.h')
-rw-r--r-- | src/anonymous.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/anonymous.h b/src/anonymous.h index cf7eec6..f6ba5f0 100644 --- a/src/anonymous.h +++ b/src/anonymous.h @@ -1,4 +1,4 @@ -/* $Id: anonymous.h,v 1.4 2001-05-27 02:21:37 rjkaes Exp $ +/* $Id: anonymous.h,v 1.5 2001-08-26 21:07:27 rjkaes Exp $ * * See 'anonymous.c' for a detailed description. * @@ -20,8 +20,8 @@ #include "ternary.h" -extern TERNARY new_anonymous(void); -extern int anon_search(char *s); -extern void anon_insert(char *s); +extern short int is_anonymous_enabled(void); +extern int anonymous_search(char *s); +extern int anonymous_insert(char *s); #endif |