home *** CD-ROM | disk | FTP | other *** search
/ World of Shareware - Software Farm 2 / wosw_2.zip / wosw_2 / CPROG / GIFTIF.ZIP / WRITETIF.C < prev    next >
C/C++ Source or Header  |  1989-11-22  |  878b  |  35 lines

  1. /*----------------------------------------------------------------------*/
  2. /* Copyright (c) 1988-1989                        */
  3. /* by CompuServe Inc., Tucson, AZ.  All Rights Reserved            */
  4. /* WRITETIF.C can be copied and distributed freely for any        */
  5. /* non-commercial purposes. WRITETIF.C can only be incorporated        */
  6. /* into commercial software with the permission of CompuServe Inc.    */
  7. /*----------------------------------------------------------------------*/
  8.  
  9. /* Program file WRITETIF.C */
  10.  
  11. #include <stdio.h>
  12. #include "cnvhuf.h"
  13. #include "writetif.h"
  14.  
  15. static FILE
  16.     *tif_file;
  17.  
  18. extern void init_TIF_output( char    filename[21] )
  19. {
  20.     tif_file = fopen( filename, "wb" );
  21. }
  22.  
  23. extern short put_TIF_byte( unsigned char    nxt_char )
  24. {
  25.     fputc( nxt_char, tif_file );
  26.     return ferror( tif_file );
  27. }
  28.  
  29.  
  30. extern    void    finish_output( void )
  31. {
  32.    fclose( tif_file );
  33. }
  34.  
  35.