Add debug code

This commit is contained in:
Mylloon 2021-12-19 20:29:31 +01:00
parent 8a368746d6
commit ec9d9ef087

38
main.c
View file

@ -7,6 +7,44 @@
void help(char const progName[]);
int main(int argc, char const *argv[]) {
/* Morceau de code qui m'a permis de testé `liste.c`
Liste l = NULL;
FILE *f;
if ((f = fopen("res_fprintf.txt", "w")) == NULL) {
printf("Erreur lors de l'ouverture du fichier.\n");
return 1;
}
ajouterLettre(&l, 'a');
ajouterLettre(&l, 'c');
ajouterLettre(&l, 'c');
ajouterLettre(&l, 'b');
ajouterLettre(&l, 'b');
ajouterLettre(&l, 'b');
ajouterLettre(&l, 'b');
ajouterLettre(&l, 'c');
ajouterLettre(&l, 'e');
trierListe(&l);
Cellule *c = allouerCellule('x');
c->frequence=2;
ajouterRangee(&l, c);
ajouterLettre(&l, 'r');
Cellule *d = allouerCellule('w');
ajouterRangee(&l, d);
afficherListe(l, f);
fclose(f);
viderListe(l);
*/
if (argc < 2) { // si aucun argument
printf("Aucun argument n'a été renseigné.\n");
help(argv[0]); // affichage du message d'aide