This repository has been archived on 2024-01-04. You can view files and clone it, but cannot push or open issues or pull requests.
ncsa-mosaic/libwww2/HTFWriter.h

23 lines
597 B
C

/*
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 <stdio.h>
#include "HTFormat.h"
extern HTStream * HTSaveAndExecute PARAMS((
HTPresentation * pres,
HTParentAnchor * anchor, /* Not used */
HTStream * sink,
HTFormat format_in,
int compressed));
#endif