#ifndef __MSG_SENDER_H_ #define __MSG_SENDER_H_ /* inits main loop of message sender. callbacks are initialized in this function */ void msg_main_loop(char *sender, char *receiver); /* starts infinite loop */ void msg_run_ircm(); /* stops infinite loop * loop */ void msg_stop_irc(); /* input for message which has to be sent */ void set_txt_msg(char *msg); /* returns received message */ char* get_txt_msg(); #endif