File: tree.e

package info (click to toggle)
html-xml-utils 7.7-1.1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, sid, trixie
  • size: 2,488 kB
  • sloc: ansic: 11,213; sh: 7,996; lex: 243; makefile: 193; yacc: 125
file content (55 lines) | stat: -rwxr-xr-x 1,889 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
typedef enum {
  Element, Text, Comment, Declaration, Procins, Root
} Nodetype;
typedef struct _node {
  Nodetype tp;
  string name;
  pairlist attribs;
  string text;
  string url;
  struct _node *parent;
  struct _node *sister;
  struct _node *children;
} Node, *Tree;
extern Tree create(void);
extern void tree_delete(Tree t);
extern Tree get_root(Tree t);
extern conststring get_attrib(const Node *e, const conststring attname);
extern void set_attrib(Node *e, string name, conststring value);
extern _Bool 
           delete_attrib(Node *e, const conststring name);
extern Tree get_elt_by_id(Node *n, const conststring id);
extern Tree wrap_contents(Node *n, const string elem, pairlist attr);
extern Tree wrap_elt(Node *n, const conststring elem, pairlist attr);
extern void rename_elt(Node *n, const string elem);
extern _Bool 
           is_known(const string e);
extern _Bool 
           is_pre(const string e);
extern _Bool 
           need_stag(const string e);
extern _Bool 
           need_etag(const string e);
extern _Bool 
           is_empty(const string e);
extern _Bool 
           has_parent(const string c, const string p);
extern _Bool 
           is_mixed(const string e);
extern _Bool 
           break_before(const string e);
extern _Bool 
           break_after(const string e);
extern _Bool 
           is_cdata_elt(const string e);
extern Tree tree_push(Tree t, string elem, pairlist attr);
extern Tree html_push(Tree t, string elem, pairlist attr);
extern Tree tree_pop(Tree t, string elem);
extern Tree html_pop(Tree t, string elem);
extern Tree append_comment(Tree t, string comment);
extern Tree append_declaration(Tree t, string gi,
          string fpi, string url);
extern Tree append_procins(Tree t, string procins);
extern Tree tree_append_text(Tree t, string text);
extern Tree append_text(Tree t, string text);
extern void dumptree(Tree t, FILE *f);