1 /*
2  *	aprsc
3  *
4  *	(c) Heikki Hannikainen, OH7LZB <hessu@hes.iki.fi>
5  *
6  *     This program is licensed under the BSD license, which can be found
7  *     in the file LICENSE.
8  *
9  */
10 #ifndef CLIENTLIST_H
11 #define CLIENTLIST_H
12 
13 #include "worker.h"
14 
15 extern int clientlist_add(struct client_t *c);
16 extern void clientlist_remove(struct client_t *c);
17 
18 extern int clientlist_check_if_validated_client(char *username, int len);
19 
20 #endif
21 
22