Florian - Add Lecture Bit

This commit is contained in:
name 2019-12-12 13:41:52 +01:00
parent aab2ff44fb
commit 78489f05d8
No known key found for this signature in database
GPG key ID: 03E8F3CF3183323A

View file

@ -61,6 +61,19 @@ void Ec_Bit(Bin_file *output,char bit)
}
void Lec_Bit (Bin_file*input)
{
char bit ;
if (input->record_length = 0)
{
fread (input->record,BLOCK_SIZE,1,input_file);
input->record_length = nb_octets ;
input->i_record = 0 ;
}
}
int main()
{
Bin_file *p;