This repository has been archived by the owner on Jul 5, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathudp.h
58 lines (50 loc) · 1.98 KB
/
udp.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
/*****************************************************************************
* Copyright 1994-2005, Elliot Mednick and Mark Hummel
* This file is part of Veriwell.
*
* Veriwell is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* Veriwell is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with Foobar; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*****************************************************************************/
/*******************************************************************
*
* udp.h
* - header file for udp.c
*
*******************************************************************
*/
#ifndef UDP_H
#define UDP_H
extern int deltaTable[10][4][4];
tree build_udp(tree identifier);
tree build_udp_string(void);
void end_primitive(tree node);
void append_udp_digits(tree * node, char c1, char c2);
void validate_udp_string(tree udp, tree udp_string);
int is_edge(char *ptr);
int is_valid_output(char *ptr, int combFlag);
int is_valid_input(char *ptr, int combFlag);
void set_udp_table_entry(char *table, int positin, int state, char *last,
char *next, char *rest, int from_mask,
int *reportFlag);
void fill_udp_table(char *table, int inputNumber, int inputCount,
tree string_list, int seqFlag);
int is_edge_string(tree t, int *position);
int int_power(int b, int p);
void instantiate_udp(tree module, tree caller, tree udp_def);
void udp_exec(struct Marker *marker);
void init_udp(void);
// private methods
#ifdef UDP_C
#endif // UDP_C
#endif // UDP_H