File: dtd.e

package info (click to toggle)
html-xml-utils 6.1-1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 1,620 kB
  • sloc: ansic: 10,027; sh: 2,135; lex: 189; yacc: 125; perl: 123; makefile: 122
file content (8 lines) | stat: -rw-r--r-- 271 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
#define MAXNAMELEN  10
 typedef struct _ElementType {
  string name;
  Boolean mixed, empty, stag, etag, pre, break_before, break_after;
  string parents[60];
} ElementType;
 const ElementType * lookup_element(register const char *str,
       register unsigned int len);