#ifndef USERS_H #define USERS_H void check_users(Connection *c); void show_users(Connection *c); void users_update_self(Connection *c); void users_register_self(Connection *c); void user_start_message(Connection *c,int socket); void user_start_kick(Connection *c, int socket); void user_query_info(Connection *c,int socket); void pubchat_handle_received_message(Message *m); #endif