1 /* $Id$
2  *
3  * HUSKYLIB: common defines, types and functions for HUSKY
4  *
5  * This is part of The HUSKY Fidonet Software project:
6  * see http://husky.sourceforge.net for details
7  *
8  *
9  * HUSKYLIB is free software; you can redistribute it and/or
10  * modify it under the terms of the GNU Lesser General Public
11  * License as published by the Free Software Foundation; either
12  * version 2 of the License, or (at your option) any later version.
13  *
14  * HUSKYLIB is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
17  * General Public License for more details.
18  *
19  * You should have received a copy of the GNU Lesser General Public
20  * License along with this library; see file COPYING. If not, write to the
21  * Free Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
22  *
23  * See also http://www.gnu.org, license may be found here.
24  */
25 
26 #ifndef HUSKY_PARSENN_H__
27 #define HUSKY_PARSENN_H__
28 
29 /* huskylib: compiler.h */
30 #include "compiler.h"
31 
32 /* huskylib headers */
33 #include "huskyext.h"
34 
35 #ifdef __cplusplus
36 extern "C" {
37 #endif
38 
39 /***  Declarations & defines  ***********************************************/
40 
41 #define ZONE_ALL  56685u
42 #define NET_ALL   56685u
43 #define NODE_ALL  56685u
44 #define POINT_ALL 56685u
45 
46 /*HUSKYEXT void _fast Parse_NetNode(char *netnode, word * zone, word * net, word * node, word * point);*/
47 #define Parse_NetNode(netnode, zone, net, node, point) ParseNN(netnode, zone, net, node, point, FALSE)
48 HUSKYEXT void _fast ParseNN(char *netnode, word * zone, word * net, word * node, word * point, word all);
49 
50 #ifdef __cplusplus
51 }
52 #endif
53 
54 #endif
55