Yûki - Update Bit File and remove useless files

This commit is contained in:
name 2019-12-13 00:29:06 +01:00
parent 959f1b5938
commit 91c2bb9660
No known key found for this signature in database
GPG key ID: 03E8F3CF3183323A
5 changed files with 128 additions and 90 deletions

View file

@ -1,3 +1,6 @@
/*
Prototypes de gestion_fichiers.c + variables define + structure(s)
*/
#ifndef __GESTION_FICHIERS__
#define __GESTION_FICHIERS__
#include <stdio.h>
@ -5,7 +8,7 @@
typedef struct
{
FILE *file; // Identificateur fichier
FILE*file; // Identificateur fichier
char mode; // Mode de lecture r ou w
unsigned char record[BLOCK_SIZE]; // Tampon pour lire ou écrire
int record_length; // nombre d'élèments du tampon
@ -13,6 +16,6 @@ typedef struct
char octet[8]; // On découpe l'octet en 8 caractère
int i_octet; // indice dansl'octet
int nb_octets; // Nb octet lis/écrit
}Bin_file;
#endif