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 
11 #ifndef PARSE_QC_H
12 #define PARSE_QC_H
13 
14 #include "worker.h" /* struct client_t */
15 
16 extern int check_invalid_q_callsign(const char *call, int len);
17 
18 extern int q_process(struct client_t *c, const char *pdata,
19                      char *new_q, int new_q_size, char *via_start,
20                      char **path_end, int pathlen, char **new_q_start, char **q_replace,
21                      int originated_by_client);
22 
23 #endif
24