File: html.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 (35 lines) | stat: -rw-r--r-- 1,482 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
 typedef void (*html_handle_error_fn)
  (void *clientdata, const string s, int lineno);
 typedef void* (*html_handle_start_fn)
  (void);
 typedef void (*html_handle_end_fn)
  (void *clientdata);
 typedef void (*html_handle_comment_fn)
  (void *clientdata, const string commenttext);
 typedef void (*html_handle_text_fn)
  (void *clientdata, const string text);
 typedef void (*html_handle_decl_fn)
  (void *clientdata, const string gi, const string fpi, const string url);
 typedef void (*html_handle_pi_fn)
  (void *clientdata, const string pi_text);
 typedef void (*html_handle_starttag_fn)
  (void *clientdata, const string name, pairlist attribs);
 typedef void (*html_handle_emptytag_fn)
  (void *clientdata, const string name, pairlist attribs);
 typedef void (*html_handle_endtag_fn)
  (void *clientdata, const string name);
 typedef void (*html_handle_endincl_fn)
  (void *clientdata);
 extern int yyparse(void);
 void set_error_handler(html_handle_error_fn f);
 void set_start_handler(html_handle_start_fn f);
 void set_end_handler(html_handle_end_fn f);
 void set_comment_handler(html_handle_comment_fn f);
 void set_text_handler(html_handle_text_fn f);
 void set_decl_handler(html_handle_decl_fn f);
 void set_pi_handler(html_handle_pi_fn f);
 void set_starttag_handler(html_handle_starttag_fn f);
 void set_emptytag_handler(html_handle_emptytag_fn f);
 void set_endtag_handler(html_handle_endtag_fn f);
 void set_endincl_handler(html_handle_endincl_fn f);
 int lineno ;