home *** CD-ROM | disk | FTP | other *** search
/ InfoMagic Internet Tools 1993 July / Internet Tools.iso / RockRidge / info-service / www / src / WWW / Library / Implementation / HTFWriter.h < prev    next >
Encoding:
C/C++ Source or Header  |  1993-06-20  |  729 b   |  30 lines

  1. /*                /Net/dxcern/userd/timbl/hypertext/WWW/Library/Implementation/HTFWriter.html
  2.                                       C FILE WRITER
  3.                                              
  4.    It is useful to have both FWriter and Writer for environments in which fdopen() doesn't
  5.    exist for example.
  6.    
  7.  */
  8. #ifndef HTFWRITE_H
  9. #define HTFWRITE_H
  10.  
  11. #include "HTStream.h"
  12. #include <stdio.h>
  13. #include "HTFormat.h"
  14.  
  15. #ifdef SHORT_NAMES
  16. #define HTFWriter_new   HTFWnew
  17. #endif
  18.  
  19. extern HTStream * HTFWriter_new PARAMS((FILE * fp));
  20.  
  21. extern HTStream * HTSaveAndExecute PARAMS((
  22.         HTPresentation *        pres,
  23.         HTParentAnchor *        anchor, /* Not used */
  24.         HTStream *              sink));
  25.  
  26. #endif
  27. /*
  28.  
  29.    end  */
  30.