htatom.h

来自「用于linux和其他unix下面的」· C头文件 代码 · 共 42 行

H
42
字号
/*  *//*                      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>typedef struct _HTAtom HTAtom;struct _HTAtom {        HTAtom *        next;        char *          name;}; /* struct _HTAtom */PUBLIC HTAtom * HTAtom_for PARAMS((CONST char * string));PUBLIC HTList * HTAtom_templateMatches PARAMS((CONST char * templ));#define HTAtom_name(a) ((a)->name)#endif  /* HTATOM_H *//*    */

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?