1
0
Fork 0
lynx/WWW/Library/Implementation/HTFWriter.h
Daniel Baumann 20df3659cf
Adding upstream version 2.9.2.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-21 08:10:34 +02:00

30 lines
755 B
C

/* File Writer for libwww
C FILE WRITER
It is useful to have both FWriter and Writer for environments in which fdopen() doesn't
exist for example.
*/
#ifndef HTFWRITE_H
#define HTFWRITE_H
#include <HTStream.h>
#include <HTFormat.h>
#ifdef __cplusplus
extern "C" {
#endif
extern HTStream *HTFWriter_new(FILE *fp);
extern HTStream *HTSaveAndExecute(HTPresentation *pres,
HTParentAnchor *anchor, /* Not used */
HTStream *sink);
extern HTStream *HTSaveLocally(HTPresentation *pres,
HTParentAnchor *anchor, /* Not used */
HTStream *sink);
#ifdef __cplusplus
}
#endif
#endif /* HTFWRITE_H */