first flow of .h, one main() compilng

This commit is contained in:
tonton Th
2020-03-28 09:57:02 +01:00
parent 33f0954c7b
commit 850cf9d8bd
14 changed files with 873 additions and 5 deletions

20
clients.h Normal file
View File

@@ -0,0 +1,20 @@
/*
* clients
* architecture clients/serveur guinness
* Thomas Nemeth -- le 15 juin 2001
*
*/
#ifndef GUINNESS_CLIENTS
#define GUINNESS_CLIENTS
void add_client (userinfos *infos);
void remove_client (userinfos *infos);
int rename_client (userinfos *infos, const char *new_nick);
char *list_clients ();
char *infos_client (int admin, const char *nick);
#endif