X-Git-Url: https://git.distorted.org.uk/~mdw/become/blobdiff_plain/c4f2d992e4a0fc068281376d89ec38de56dc2f58..eddaf5fa5e13a84e441338cfdebdcfcd74e3f043:/src/name.h diff --git a/src/name.h b/src/name.h index 8d94ed5..fe7c221 100644 --- a/src/name.h +++ b/src/name.h @@ -1,13 +1,13 @@ /* -*-c-*- * - * $Id: name.h,v 1.1 1997/07/21 13:47:46 mdw Exp $ + * $Id: name.h,v 1.6 1998/04/23 13:24:21 mdw Exp $ * * Looking up of names in symbol tables * - * (c) 1997 EBI + * (c) 1998 EBI */ -/*----- Licencing notice --------------------------------------------------* +/*----- Licensing notice --------------------------------------------------* * * This file is part of `become' * @@ -22,20 +22,35 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with `become'; if not, write to the Free Software - * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. + * along with `become'; if not, write to the Free Software Foundation, + * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ /*----- Revision history --------------------------------------------------* * * $Log: name.h,v $ - * Revision 1.1 1997/07/21 13:47:46 mdw + * Revision 1.6 1998/04/23 13:24:21 mdw + * Fix multiple inclusion guard macro name. + * + * Revision 1.5 1998/01/12 16:46:15 mdw + * Fix copyright date. + * + * Revision 1.4 1997/09/17 10:26:11 mdw + * Use rewritten class handler. Support `none' class. + * + * Revision 1.3 1997/08/20 16:18:05 mdw + * Replace `name_reinit' by `name_end' for more sensible restart. + * + * Revision 1.2 1997/08/04 10:24:24 mdw + * Sources placed under CVS control. + * + * Revision 1.1 1997/07/21 13:47:46 mdw * Initial revision * */ -#ifndef NAMES_H -#define NAMES_H +#ifndef NAME_H +#define NAME_H #ifdef __cplusplus extern "C" { @@ -55,7 +70,7 @@ typedef struct name { sym_base base; /* Base block for symbol table */ - classdef *c; /* Base class pointer */ + class_node *c; /* Base class pointer */ } name; /*----- Functions provided ------------------------------------------------*/ @@ -72,18 +87,17 @@ typedef struct name { extern void name_init(void); -/* --- @name_reinit@ --- * +/* --- @name_end@ --- * * * Arguments: --- * * Returns: --- * - * Use: Reinitialises the names table. It's cleared and then - * initialised with the current user and group ids as for - * @name_init@ above. + * Use: Closes down the name database, so that it can be + * reinitialised. */ -extern void name_reinit(void); +extern void name_end(void); /* --- @name_find@ --- * * @@ -105,14 +119,14 @@ extern name *name_find(const char */*p*/, /* --- @name_dump@ --- * * - * Arguments: @FILE *fp@ = stream to dump on + * Arguments: --- * * Returns: --- * * Use: Dumps a complete listing of the symbol table. */ -extern void name_dump(FILE */*fp*/); +extern void name_dump(void); /*----- That's all, folks -------------------------------------------------*/