home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / World_Of_Computer_Software-02-387-Vol-3of3.iso / l / lds_10.zip / COMP / BITIO.H < prev    next >
Text File  |  1990-05-23  |  435b  |  16 lines

  1. /*
  2.  * Listing 3 -- bitio.h
  3.  *
  4.  * This header file contains the function prototypes needed to use
  5.  * the bitstream i/o routines.
  6.  *
  7.  */
  8. short int input_bit( FILE *stream );
  9. void initialize_output_bitstream( void );
  10. void output_bit( FILE *stream, int bit );
  11. void flush_output_bitstream( FILE *stream );
  12. void initialize_input_bitstream( void );
  13. long bit_ftell_output( FILE *stream );
  14. long bit_ftell_input( FILE *stream );
  15.  
  16.