-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgestion_fichiers.h
34 lines (26 loc) · 1.11 KB
/
gestion_fichiers.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
#ifndef GESTION_FICHIERS_H_INCLUDED
#define GESTION_FICHIERS_H_INCLUDED
#define GESTION_FICHIERS 1
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <iostream>
#include <fstream>
using namespace std;
class Fichiers
{
public:
static uint64_t retournement_uint64(uint64_t donnee);
static uint32_t retournement_uint32(uint32_t donnee);
static uint16_t retournement_uint16(uint16_t donnee);
static float retournement_float(float donnee);
static char* lecture_chaine(FILE* fichier);
static char* copie_chaine(char* chaine_source, uint32_t taille_max=1024);
static void recupere_nom_fichier(char* nom_complet, char* nom_fichier);
static void recupere_nom_fichier(char* nom_complet);
static int32_t charge_donnees_binaires(char* tempon,uint32_t taille_tempon, char* nom_fichier);
static uint32_t renvoie_taille_fichier(char* nom_fichier);
static char* charge_donnees_binaires_allocation(char* nom_fichier);
static bool sauve_donnees_binaires(char* donnees,uint32_t taille, char* nom_fichier);
};
#endif // GESTION_FICHIERS_H_INCLUDED