11 lines
172 B
C
11 lines
172 B
C
|
#ifndef SERVER_H
|
||
|
#define SERVER_H
|
||
|
|
||
|
/* Fonction qui s'occupe d'un client après sa connexion */
|
||
|
void service(int);
|
||
|
|
||
|
/* Handler pour signal() */
|
||
|
void interrupt(int);
|
||
|
|
||
|
#endif
|