⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 latin1.h

📁 harvest是一个下载html网页得机器人
💻 H
字号:
/* SGML Character Use: ISO Latin 1.*/#define EOFCHAR   '\032'      /* FUNCTION: EE (entity end: files). */#define EOBCHAR   '\034'      /* NONCHAR: EOB (file entity: end of buffer. */#define RSCHAR    '\012'      /* FUNCTION: RS (record start). */#define RECHAR    '\015'      /* FUNCTION: RE (record end). */#define TABCHAR   '\011'      /* FUNCTION: TAB (horizontal tab). */#define SPCCHAR   '\040'      /* FUNCTION: SPACE (horizontal space). */#define GENRECHAR '\010'      /* NONCHAR: Generated RE. */#define DELCDATA  '\035'      /* NONCHAR: Delimiter for CDATA entity in				 attribute value. */#define DELSDATA  '\036'      /* NONCHAR: Delimiter for SDATA entity in				 attribute value. */#define DELNONCH  '\037'      /* NONCHAR: non-SGML character prefix. *//* These two macros are used to handle non-SGML characters. A non-SGMLby character is represented by a DELNONCH character followed bySHIFTNON(original_character).  SHIFTNON must transform any characterin the set 0, EOFCHAR, EOBCHAR, GENRECHAR, DELCDATA, DELSDATA,DELNONCH into a character that is not one of the set 0, EOFCHAR,EOBCHAR.  Furthermore UNSHIFTNON(SHIFTNON(c)) must be equal to c forevery character c in the former set. *//* This is a simple definition that works for ASCII-like character sets. */#define SHIFTNON(ch) ((UNCH)(ch) | 0100)#define UNSHIFTNON(ch) ((UNCH)(ch) & ~0100)/* A canonical NONSGML character. The character number that is shunnedin the reference concrete syntax and is not the number of asignificant (in the reference concrete syntax) character nor one ofthe above characters nor 0. */#define CANON_NONSGML 255/* A canonical DATACHAR character. The character number that is notshunned in the reference concrete syntax and is not the number of asignificant (in the reference concrete syntax) SGML character nor oneof the above characters. */#define CANON_DATACHAR 254

⌨️ 快捷键说明

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