Add debug code
This commit is contained in:
parent
8a368746d6
commit
ec9d9ef087
1 changed files with 38 additions and 0 deletions
38
main.c
38
main.c
|
@ -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
|
||||
|
|
Reference in a new issue