Blame view

dico.h 375 Bytes
0bc3d1ad   bjeanlou   dico created
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
  #ifndef DICO_H
  #define DICO_H
  
  #include "treeh.h"
  
  #define NB1CHAR 52 // A-Z + a-z
  
  typedef tree dico[NB1CHAR];
  
  void make_empty_dico(dico);
  void delete_dico(dico);
  int hash2(char);//needs to check isalpha==true
  bool addto_dico(dico,string);
  
  void loadfrom_file(dico,FILE*);
  void loadfrom_keyboard(dico);
  
  void printto_file(dico,FILE*);
  void printto_terminal(dico);
  
  
  #endif