summaryrefslogtreecommitdiffstats
path: root/friendfinder/handler.h
blob: 229c250d5cb631ac5fab3be57408ff60563d40e9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#ifndef __HANDLER_H_
#define __HANDLER_H_

/* starts postition sending */
void start_pos();

/* 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