#include <stdio.h>
#define MAXMOT 50;

typedef struct positions{

    int* positions;            /* Contient le tableau des positions */
    int tailleAlloue;          /* Contient la taille alloue */
    int tailleUtilise;          /* Contient le nombre de case utilisé du tableau */
}Positions;

struct noeud
{
    char Lettre;                     
    struct noeud * FilsGauche;
    struct noeud * FrereDroit;
    Positions *pos;  
};

typedef struct noeud Noeud;     /* nouveau type : Noeud   */
typedef Noeud * Arbre;          /* pointeur sur un Noeud  */



int main(int argc, char** argv){

  FILE* fic;
  char buffer[MAXMOTS];
  if(argc == 1){
    printf("vous devez passer en paramétre le nom d'un fichier a insérer dans l'index");
    return 1;
  }

  fic=null;  /* A compléter */
  
  Arbre *a = lecture(fic, a);

  Affiche(a, mot);
}
