Context algorithm
Semi-predictive context algorithm implementation
 All Data Structures Files Functions Variables Typedefs Macros Pages
bitio.h
Go to the documentation of this file.
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 
void initialize_input_bitstream()
Definition: bitio.c:96
void initialize_output_bitstream()
Definition: bitio.c:48
void flush_output_bitstream(FILE *stream)
Definition: bitio.c:85
long bit_ftell_input(FILE *stream)
Definition: bitio.c:163
void output_bit(FILE *stream, int bit)
Definition: bitio.c:62
short int input_bit(FILE *stream)
Definition: bitio.c:112
long bit_ftell_output(FILE *stream)
Definition: bitio.c:148