1 | // This file is part of SmallBASIC |
2 | // |
3 | // high-level part: default declarations |
4 | // |
5 | // This program is distributed under the terms of the GPL v2.0 or later |
6 | // Download the GNU Public License (GPL) from www.gnu.org |
7 | // |
8 | // Copyright(C) 2000 Nicholas Christopoulos |
9 | |
10 | #if !defined(SB_APP_H) |
11 | #define SB_APP_H |
12 | |
13 | #include "common/sys.h" |
14 | #include "common/smbas.h" |
15 | #include "common/kw.h" |
16 | #include "common/pproc.h" |
17 | #include "common/var.h" |
18 | #include "common/extlib.h" |
19 | #include "common/units.h" |
20 | |
21 | #if defined(__cplusplus) |
22 | extern "C" { |
23 | #endif |
24 | |
25 | int sbasic_main(const char *file); |
26 | |
27 | #if defined(__cplusplus) |
28 | } |
29 | #endif |
30 | #endif |
31 | |