summaryrefslogtreecommitdiffstats
path: root/msg_sender/msg_sender.h
blob: 28db8a49121f48e13b724078a2f21c23f8e4f014 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#ifndef __SALSA20_H_
#define __SALSA20_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 run_irc();

/* stops infinite loop * loop */
void stop_irc();

/* input for message which has to be sent */
void set_txt_msg(char *msg);

/* returns received message */
char* get_txt_msg();




#endif