modules/up/UP_extrnl_syntax.h
/* [<][>][^][v][top][bottom][index][help] */
FUNCTIONS
This source file includes following functions.
1 #ifndef UP_EXTRNL_SYNTAX_H
2 #define UP_EXTRNL_SYNTAX_H
3
4 #define UP_EXTSYN_OK 0
5 #define UP_EXTSYN_ERR 1
6 #define UP_EXTSYN_WARN 2
7 #define UP_EXTSYN_ERR_WARN 3
8
9
10 typedef struct _external_syntax_struct {
11 int result;
12 char * error_str;
13 char * warning_str;
14 char * new_obj;
15 } external_syntax_struct;
16
17 typedef struct _attribute_struct {
18 char * type;
19 char * content;
20 } attribute_struct;
21
22 external_syntax_struct * UP_check_external_syntax(Object * arg, char * text);
23
24
25 #endif