mirror of https://github.com/lianthony/NT4.0
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
1.1 KiB
41 lines
1.1 KiB
/*
|
|
This file was derived from the libwww code, version 2.15, from CERN.
|
|
A number of modifications have been made by Spyglass.
|
|
|
|
[email protected]
|
|
*/
|
|
|
|
/* */
|
|
|
|
/* 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
|
|
|
|
typedef int HTAtom;
|
|
DECLARE_STANDARD_TYPES(HTAtom);
|
|
|
|
PUBLIC HTAtom HTAtom_for(CONST char *string);
|
|
PUBLIC char *HTAtom_name(HTAtom atom);
|
|
PUBLIC void HTAtom_deleteAll(void);
|
|
|
|
#endif /* HTATOM_H */
|
|
/*
|
|
|
|
*/
|