#ifndef __HANDLER_H_ #define __HANDLER_H_ /* init threads */ void init_msg_thread(char *from, char *to); void init_sender_thread(char *from); void init_receiver_thread(char *from); /* close all threads */ void close_threads(); #endif