Blame view

SD/TP1/chaine.h 215 Bytes
37a5f1f0   Vincent Benoist   tpSD jusqu'a comp...
1
2
3
4
5
6
7
8
9
10
  struct chaine{
  int i;
  int n;
  char* s;
  };
  
  extern void init_chaine(struct chaine*);
  extern void ajout_chaine(struct chaine*,char);
  extern void clear_chaine(struct chaine*);
  extern void imprime_chaine(struct chaine);