File: html.e

package info (click to toggle)
html-xml-utils 7.7-1.1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, forky, sid, trixie
  • size: 2,488 kB
  • sloc: ansic: 11,213; sh: 7,996; lex: 243; makefile: 193; yacc: 125
file content (35 lines) | stat: -rwxr-xr-x 1,542 bytes parent folder | download | duplicates (4)
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);
extern void set_error_handler(html_handle_error_fn f);
extern void set_start_handler(html_handle_start_fn f);
extern void set_end_handler(html_handle_end_fn f);
extern void set_comment_handler(html_handle_comment_fn f);
extern void set_text_handler(html_handle_text_fn f);
extern void set_decl_handler(html_handle_decl_fn f);
extern void set_pi_handler(html_handle_pi_fn f);
extern void set_starttag_handler(html_handle_starttag_fn f);
extern void set_emptytag_handler(html_handle_emptytag_fn f);
extern void set_endtag_handler(html_handle_endtag_fn f);
extern void set_endincl_handler(html_handle_endincl_fn f);
extern int lineno ;