2005-09-15 09:58:31 -04:00
|
|
|
|
|
|
|
#ifndef EL__DOCUMENT_PLAIN_RENDERER_H
|
|
|
|
#define EL__DOCUMENT_PLAIN_RENDERER_H
|
|
|
|
|
2020-10-05 14:14:55 -04:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2005-09-15 09:58:31 -04:00
|
|
|
struct cache_entry;
|
|
|
|
struct document;
|
2019-04-21 06:27:40 -04:00
|
|
|
struct string;
|
2005-09-15 09:58:31 -04:00
|
|
|
|
2019-04-21 06:27:40 -04:00
|
|
|
void render_plain_document(struct cache_entry *cached, struct document *document, struct string *buffer);
|
2005-09-15 09:58:31 -04:00
|
|
|
|
2020-10-05 14:14:55 -04:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2005-09-15 09:58:31 -04:00
|
|
|
#endif
|