summaryrefslogtreecommitdiff
path: root/csvncgi/html.h
blob: a41eeb2b68add9f174452ad376d7b6477d544179 (plain)
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
#ifndef    __HTML_H
#define    __HTML_H

#ifdef __cplusplus
extern "C" {
#endif


typedef void (*html_errfunc)( const char *fmt, ... );

extern void html_error( const char *fmt, ... ) __attribute__((format (printf,1,2)));
extern html_errfunc html_fatal; /* Default Fatal Error Function == html_error() */


extern void html_raw( const char *data, size_t size );
extern void html( const char *txt );
extern void htmlf( const char *format, ... ) __attribute__((format (printf,1,2)));


#ifdef __cplusplus
}
#endif

#endif  /* __HTML_H */