diff options
author | Thomas E. Dickey <dickey@invisible-island.net> | 2011-06-11 12:12:46 -0400 |
---|---|---|
committer | Thomas E. Dickey <dickey@invisible-island.net> | 2011-06-11 12:12:46 -0400 |
commit | 279010bc0791556e63b4951d83a2c45252142b80 (patch) | |
tree | 2f0ca07764a555764bb1f5a628a3468e88bf0c59 /WWW/Library/Implementation/HTAtom.h | |
parent | 0b30d0d375231ff07227872f2d1d25f005e43e98 (diff) | |
download | lynx-snapshots-279010bc0791556e63b4951d83a2c45252142b80.tar.gz |
snapshot of project "lynx", label v2_8_8dev_9a
Diffstat (limited to 'WWW/Library/Implementation/HTAtom.h')
-rw-r--r-- | WWW/Library/Implementation/HTAtom.h | 54 |
1 files changed, 0 insertions, 54 deletions
diff --git a/WWW/Library/Implementation/HTAtom.h b/WWW/Library/Implementation/HTAtom.h deleted file mode 100644 index 4125d31b..00000000 --- a/WWW/Library/Implementation/HTAtom.h +++ /dev/null @@ -1,54 +0,0 @@ -/* */ - -/* Atoms: Names to numbers HTAtom.h - * ======================= - * - * Atoms are names which are given representative pointer values - * so that they can be stored more efficiently, and compaisons - * for equality done more efficiently. - * - * HTAtom_for(string) returns a representative value such that it - * will always (within one run of the program) return the same - * value for the same given string. - * - * Authors: - * TBL Tim Berners-Lee, WorldWideWeb project, CERN - * - * (c) Copyright CERN 1991 - See Copyright.html - * - */ - -#ifndef HTATOM_H -#define HTATOM_H - -#include <HTList.h> - -#ifdef __cplusplus -extern "C" { -#endif - typedef struct _HTAtom HTAtom; - - struct _HTAtom { - HTAtom *next; - char *name; - }; /* struct _HTAtom */ - - extern HTAtom *HTAtom_for(const char *string); - extern HTList *HTAtom_templateMatches(const char *templ); - -#define HTAtom_name(a) ((a)->name) - -/* - -The HTFormat type - - We use the HTAtom object for holding representations. This allows faster manipulation - (comparison and copying) that if we stayed with strings. - - */ - typedef HTAtom *HTFormat; - -#ifdef __cplusplus -} -#endif -#endif /* HTATOM_H */ |