Refine .gitignore.
authorJérôme Benoit <jerome.benoit@piment-noir.org>
Fri, 11 Jan 2019 12:31:46 +0000 (13:31 +0100)
committerJérôme Benoit <jerome.benoit@piment-noir.org>
Fri, 11 Jan 2019 12:31:46 +0000 (13:31 +0100)
Signed-off-by: Jérôme Benoit <jerome.benoit@piment-noir.org>
.gitignore
TP6/hachage/lineaire/hachage_lineaire.c

index 33f33d35c4249301eddfd7ad4b30f453963a5c8b..8ef74272f9767aac92bdbea2aa30c1eb36b13aef 100644 (file)
@@ -16,6 +16,9 @@ AVL
 hachage_chainage
 hachage_lineaire
 tas
+!tas/
+
+.atom
 
 *.o
 # for cygwin
index c8ac848449b0ec3dc5555c29bd9961cc7dcdb764..4cde13ab366cf16a530cda1c8b5f039f77bbfaa8 100644 (file)
@@ -75,7 +75,7 @@ int inserer(int x, t_elem * tab)
     while (i < M) {
        if (tab[v].etat == VIDE)
            break;
-       /*x absent, on arrête le parcours du tableau */
+       /* x absent, on arrête le parcours du tableau */
        if ((tab[v].etat == OCCUPE) && (tab[v].cle == x))
            return v;
        /* x déjà présent, on ne fait rien */