-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathmainstate.h
82 lines (79 loc) · 2.57 KB
/
mainstate.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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
/*
** This file is part of the Matrix Brandy Basic VI Interpreter.
** Copyright (C) 2000-2014 David Daniels
** Copyright (C) 2018-2024 Michael McConnell and contributors
**
** Brandy 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, or (at your option)
** any later version.
**
** Brandy 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 Brandy; see the file COPYING. If not, write to
** the Free Software Foundation, 59 Temple Place - Suite 330,
** Boston, MA 02111-1307, USA.
**
**
** This file defines the functions that handle all the Basic
** statement types apart from assignments and I/O statements
*/
#ifndef __mainstate_h
#define __mainstate_h
extern void exec_assembler(void);
extern void exec_asmend(void);
extern void exec_oscmd(void);
extern void exec_call(void);
extern void exec_case(void);
extern void exec_xcase(void);
extern void exec_chain(void);
extern void exec_clear(void);
extern void exec_data(void);
extern void exec_def(void);
extern void exec_dim(void);
extern void exec_elsewhen(void);
extern void exec_xelse(void);
extern void exec_xlhelse(void);
extern void exec_end(void);
extern void exec_endifcase(void);
extern void exec_endproc(void);
extern void exec_fnreturn(void);
extern void exec_endwhile(void);
extern void exec_error(void);
extern void exec_exit(void);
extern void exec_for(void);
extern void exec_gosub(void);
extern void exec_goto(void);
extern void exec_blockif(void);
extern void exec_singlif(void);
extern void exec_xif(void);
extern void exec_let(void);
extern void exec_library(void);
extern void exec_local(void);
extern void exec_next(void);
extern void exec_on(void);
extern void exec_oscli(void);
extern void exec_overlay(void);
extern void exec_proc(void);
extern void exec_xproc(void);
extern void exec_quit(void);
extern void exec_read(void);
extern void exec_rem(void);
extern void exec_repeat(void);
extern void exec_report(void);
extern void exec_restore(void);
extern void exec_return(void);
extern void exec_run(void);
extern void exec_stop(void);
extern void exec_swap(void);
extern void exec_sys(void);
extern void exec_trace(void);
extern void exec_until(void);
extern void exec_wait(void);
extern void exec_xwhen(void);
extern void exec_while(void);
#endif