Add @ATOM_HASH@ macro so that assoc doesn't have to dig in the @atom@
structure.
- * $Id: atom.h,v 1.1 2001/01/20 11:50:16 mdw Exp $
+ * $Id: atom.h,v 1.2 2001/01/25 21:13:40 mdw Exp $
/*----- Revision history --------------------------------------------------*
*
* $Log: atom.h,v $
/*----- Revision history --------------------------------------------------*
*
* $Log: atom.h,v $
+ * Revision 1.2 2001/01/25 21:13:40 mdw
+ * New function allowing an atom's length to be specified at intern time.
+ * Add @ATOM_HASH@ macro so that assoc doesn't have to dig in the @atom@
+ * structure.
+ *
* Revision 1.1 2001/01/20 11:50:16 mdw
* Implementation of atom tables (for example, as found in X11).
*
* Revision 1.1 2001/01/20 11:50:16 mdw
* Implementation of atom tables (for example, as found in X11).
*
*
* Arguments: @atom_table *t@ = pointer to an atom table
* @const char *p@ = pointer to the string to intern
*
* Arguments: @atom_table *t@ = pointer to an atom table
* @const char *p@ = pointer to the string to intern
+ * @size_t n@ = size of the string (for @atom_nintern)
*
* Returns: A pointer to the atom block for the given symbol string.
*
*
* Returns: A pointer to the atom block for the given symbol string.
*
#define INTERN(p) atom_intern(ATOM_GLOBAL, (p))
extern atom *atom_intern(atom_table */*t*/, const char */*p*/);
#define INTERN(p) atom_intern(ATOM_GLOBAL, (p))
extern atom *atom_intern(atom_table */*t*/, const char */*p*/);
+extern atom *atom_nintern(atom_table */*t*/,
+ const char */*p*/, size_t /*n*/);
/* --- @atom_gensym@ --- *
*
/* --- @atom_gensym@ --- *
*
-#define ATOM_LEN(a) (SYM_LEN(a) - 1)
+#define ATOM_LEN(a) SYM_LEN(a)
extern size_t atom_len(const atom */*a*/);
extern size_t atom_len(const atom */*a*/);