Fix copyright date.
[become] / src / name.h
index 93793c9..1972481 100644 (file)
@@ -1,10 +1,10 @@
 /* -*-c-*-
  *
- * $Id: name.h,v 1.2 1997/08/04 10:24:24 mdw Exp $
+ * $Id: name.h,v 1.5 1998/01/12 16:46:15 mdw Exp $
  *
  * Looking up of names in symbol tables
  *
- * (c) 1997 EBI
+ * (c) 1998 EBI
  */
 
 /*----- Licensing notice --------------------------------------------------*
 /*----- Revision history --------------------------------------------------*
  *
  * $Log: name.h,v $
+ * 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.
  *
@@ -58,7 +67,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 ------------------------------------------------*/
@@ -75,18 +84,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@ --- *
  *