principal

Dependencies:   mbed fastlib vga640x400

FICHIER/fichier.h

Committer:
yokoland95
Date:
2019-06-13
Revision:
2:05fe3543a781

File content as of revision 2:05fe3543a781:

#include "mbed.h"  
    /*-------------------------------------------*/ 
    /* COMPTE LE NOMBRE DE LIGNE DANS LE FICHIER */
    /*-------------------------------------------*/ 
int nombre_ligne_fichier(FILE* fp);

    /*-----------------------------------*/ 
    /* RETOURNE LE CONTENU DE LA LIGNE X */
    /*-----------------------------------*/ 
void retourne_ligne(int num, char ligne[500], FILE* fp);

    /*-----------------------------------*/ 
    /* RETOURNE L'ÉLÉMENT X DE LA LIGNE  */
    /*-----------------------------------*/ 
char* retourne_element_ligne(int num, char ligne[500]);


    /*----------------------------------------*/ 
    /* RETOURNE Le NUM DE LA BONNE REPONSE D  */
    /*----------------------------------------*/  
int num_bonne_reponse( char ligne[500]);

void lancer_question(void);