Blame view

client.h 116 Bytes
629c100c   achemin1   feat: clients...
1
2
3
4
5
6
7
8
9
10
11
12
  #ifndef CLIENT_H
  #define CLIENT_H
  
  
  int connexionServeur(char *hote,char *service);
  int boucle(int s);
  
  
  
  
  
  #endif