principal

Dependencies:   mbed fastlib vga640x400

Committer:
yokoland95
Date:
Thu Jun 13 15:56:16 2019 +0000
Revision:
2:05fe3543a781
blabla

Who changed what in which revision?

UserRevisionLine numberNew contents of line
yokoland95 2:05fe3543a781 1 #include "mbed.h"
yokoland95 2:05fe3543a781 2 /*-------------------------------------------*/
yokoland95 2:05fe3543a781 3 /* COMPTE LE NOMBRE DE LIGNE DANS LE FICHIER */
yokoland95 2:05fe3543a781 4 /*-------------------------------------------*/
yokoland95 2:05fe3543a781 5 int nombre_ligne_fichier(FILE* fp);
yokoland95 2:05fe3543a781 6
yokoland95 2:05fe3543a781 7 /*-----------------------------------*/
yokoland95 2:05fe3543a781 8 /* RETOURNE LE CONTENU DE LA LIGNE X */
yokoland95 2:05fe3543a781 9 /*-----------------------------------*/
yokoland95 2:05fe3543a781 10 void retourne_ligne(int num, char ligne[500], FILE* fp);
yokoland95 2:05fe3543a781 11
yokoland95 2:05fe3543a781 12 /*-----------------------------------*/
yokoland95 2:05fe3543a781 13 /* RETOURNE L'ÉLÉMENT X DE LA LIGNE */
yokoland95 2:05fe3543a781 14 /*-----------------------------------*/
yokoland95 2:05fe3543a781 15 char* retourne_element_ligne(int num, char ligne[500]);
yokoland95 2:05fe3543a781 16
yokoland95 2:05fe3543a781 17
yokoland95 2:05fe3543a781 18 /*----------------------------------------*/
yokoland95 2:05fe3543a781 19 /* RETOURNE Le NUM DE LA BONNE REPONSE D */
yokoland95 2:05fe3543a781 20 /*----------------------------------------*/
yokoland95 2:05fe3543a781 21 int num_bonne_reponse( char ligne[500]);
yokoland95 2:05fe3543a781 22
yokoland95 2:05fe3543a781 23 void lancer_question(void);