forked from nerun/bwbasic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbwbasic.h
3062 lines (2825 loc) · 134 KB
/
bwbasic.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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/***************************************************************
bwbasic.h Header File
for Bywater BASIC Interpreter
Copyright (c) 1993, Ted A. Campbell
Bywater Software
email: [email protected]
Copyright and Permissions Information:
All U.S. and international rights are claimed by the author,
Ted A. Campbell.
This software is released under the terms of the GNU General
Public License (GPL), which is distributed with this software
in the file "COPYING". The GPL specifies the terms under
which users may copy and use the software in this distribution.
A separate license is available for commercial distribution,
for information on which you should contact the author.
***************************************************************/
/*---------------------------------------------------------------*/
/* NOTE: Modifications marked "JBV" were made by Jon B. Volkoff, */
/* 11/1995 ([email protected]). */
/* */
/* Those additionally marked with "DD" were at the suggestion of */
/* Dale DePriest ([email protected]). */
/* */
/* Version 3.00 by Howard Wulf, AF5NE */
/* */
/* Version 3.10 by Howard Wulf, AF5NE */
/* */
/* Version 3.20 by Howard Wulf, AF5NE */
/* */
/*---------------------------------------------------------------*/
/*--------------------------------------------------------\
| |
| Additional changes and additions make by 01001100 |
| (unmarked due to lack of effort) |
| |
\---------------------------------------------------------/
*/
#define TRUE -1
#define FALSE 0
#define NDEBUG 1
#include <assert.h>
#include <ctype.h>
#include <errno.h>
#include <float.h>
#include <limits.h>
#include <locale.h>
#include <math.h>
#include <setjmp.h>
#include <signal.h>
#include <stdarg.h>
#include <stddef.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <time.h>
/***************************************************************
Definitions
***************************************************************/
/***************************************************************
Define Major Hardware Implementation
TTY is the default implementation.
It is the most minimal, but the most
universal hardware implementation.
If you use TTY then check the settings
in bwx_tty.c for your system.
***************************************************************/
/*
**
** Here is where you should #include any implementation
** specific files to #define your preferences
**
**
#include "bwb_user.h"
**
**
**
**
*/
/*
**
** Attempt to detect the Operating System
**
*/
#if defined(HAVE_UNIX)
/*
**
** UNIX-style Operating Systems
**
*/
#elif defined(HAVE_MSDOS)
/*
**
** MSDOS-style Operating Systems
**
*/
#elif defined(HAVE_CMS)
/*
**
** GCC 3 for CMS on Hercules
**
*/
#elif defined(HAVE_MVS)
/*
**
** GCC 3 for MVS on Hercules
**
*/
#elif defined(__CMS__)
#define HAVE_CMS TRUE
#elif defined(__MVS__)
#define HAVE_MVS TRUE
#elif defined(_DOS)
#define HAVE_MSDOS TRUE
#elif defined(_WIN16)
#define HAVE_MSDOS TRUE
#elif defined(_WIN32)
#define HAVE_MSDOS TRUE
#elif defined(_WIN64)
#define HAVE_MSDOS TRUE
#elif defined(__unix__)
#define HAVE_UNIX TRUE
#elif defined(__unix)
#define HAVE_UNIX TRUE
#elif defined(__APPLE__)
#define HAVE_UNIX TRUE
#elif defined(__MACH__)
#define HAVE_UNIX TRUE
#elif defined(__BORLANDC__)
#define HAVE_MSDOS TRUE
#elif defined(__DMC__)
#define HAVE_MSDOS TRUE
#elif defined(__WATCOM__)
#define HAVE_MSDOS TRUE
#else
/*
**
** Unable to detect the operating system
**
*/
#endif
/*-------------------------------------------------------------
ENVIRONMENT specific configuration
-------------------------------------------------------------*/
#if HAVE_UNIX
/*
**
** UNIX-style Operating Systems
**
*/
/*
**
** If I understand correctly, my development environment is
** GCC 4.9 for Linux via CCTools for Android in a BusyBox
** environment under a Java simulation of an ARM processor
** on a Barnes & Noble $69 Nook Tablet. What could possibly
** go wrong? When you finish laughing, it actually works.
**
** I compile with: gcc -ansi -o bwbasic bw*.c
**
*/
#include <unistd.h>
#include <sys/stat.h>
#ifndef DIRECTORY_CMDS
#define DIRECTORY_CMDS TRUE
#endif /* DIRECTORY_CMDS */
#ifndef MKDIR_ONE_ARG
#define MKDIR_ONE_ARG FALSE
#endif /* MKDIR_ONE_ARG */
#ifndef DEF_PROMPT
#define DEF_PROMPT "> "
#endif /* DEF_PROMPT */
#ifndef PERMISSIONS
#define PERMISSIONS 0x0644
#endif /* PERMISSIONS */
#ifndef DEF_EDITOR
#define DEF_EDITOR "nano"
#endif /* DEF_EDITOR */
#ifndef HAVE_UNIX_GCC
#if __GNUC__
#define HAVE_UNIX_GCC TRUE
#else
#define HAVE_UNIX_GCC FALSE
#endif /* __GNUC__ */
#endif /* HAVE_UNIX_GCC */
#endif /* HAVE_UNIX */
/*-----------------------------------------------------------*/
#if HAVE_MSDOS
/*
**
** MSDOS-style Operating Systems
**
*/
#if __WATCOM__
#include <direct.h> /* OpenWatcom 1.9 for DOS */
#else
#include <dir.h> /* all others */
#endif /* __WATCOM__ */
#ifndef DIRECTORY_CMDS
#define DIRECTORY_CMDS TRUE
#endif /* DIRECTORY_CMDS */
#ifndef MKDIR_ONE_ARG
#define MKDIR_ONE_ARG TRUE
#endif /* MKDIR_ONE_ARG */
#ifndef PERMISSIONS
#define PERMISSIONS 0
#endif /* PERMISSIONS */
#ifndef DEF_EDITOR
#define DEF_EDITOR "edit"
#endif /* DEF_EDITOR */
#ifndef DEF_FILES
#define DEF_FILES "dir /w"
#endif /* DEF_FILES */
#ifndef HAVE_UNIX_GCC
#define HAVE_UNIX_GCC FALSE
#endif /* HAVE_UNIX_GCC */
#endif /* HAVE_MSDOS */
/*-----------------------------------------------------------*/
#if HAVE_CMS
/*
**
** GCC 3 for CMS on Hercules
**
*/
#include "bwd_six.h"
#ifndef PROFILENAME
#define PROFILENAME "PROFILE BAS"
#endif /* PROFILENAME */
#if FALSE
/*
**
** bwBASIC 3.10: OPTION STDERR "LPRINT OUT"
**
*/
#ifndef LPRINTFILENAME
#define LPRINTFILENAME "LPRINT OUT"
#endif /* LPRINTFILENAME */
#endif /* FALSE */
#if FALSE
/*
**
** bwBASIC 3.10: OPTION STDERR "ERROR OUT"
**
*/
#ifndef ERRFILE
#define ERRFILE "ERROR OUT"
#endif /* ERRFILE */
#endif /* FALSE */
#if FALSE
/*
**
** bwBASIC 3.20: OPTION PROMPT "bwBASIC:" + CHR$(10)
**
*/
#ifndef DEF_PROMPT
#define DEF_PROMPT "bwBASIC:\n"
#endif /* DEF_PROMPT */
#endif /* FALSE */
#ifndef DEF_EXTENSION
#define DEF_EXTENSION " BAS"
#endif /* DEF_EXTENSION */
#ifndef DIRECTORY_CMDS
#define DIRECTORY_CMDS FALSE
#endif /* DIRECTORY_CMDS */
#ifndef HAVE_UNIX_GCC
#define HAVE_UNIX_GCC FALSE
#endif /* HAVE_UNIX_GCC */
#endif /* HAVE_CMS */
/*---------------------------------------------------------------*/
#ifdef HAVE_MVS
/*
**
** GCC 3 for MVS on Hercules
**
*/
#include "bwd_six.h"
#ifndef PROFILENAME
#define PROFILENAME "dd:profile"
#endif /* PROFILENAME */
#if FALSE
/*
**
** bwBASIC 3.10: OPTION STDERR "dd:lprint"
**
*/
#ifndef LPRINTFILENAME
#define LPRINTFILENAME "dd:lprint"
#endif /* LPRINTFILENAME */
#endif /* FALSE */
#if FALSE
/*
**
** bwBASIC 3.10: OPTION STDERR "dd:errout"
**
*/
#ifndef ERRFILE
#define ERRFILE "dd:errout"
#endif /* ERRFILE */
#endif /* FALSE */
#if FALSE
/*
**
** bwBASIC 3.20: OPTION PROMPT "bwBASIC:" + CHR$(10)
**
*/
#ifndef DEF_PROMPT
define DEF_PROMPT "bwBASIC> "
#endif /* DEF_PROMPT */
#endif /* FALSE */
#ifndef DEF_EXTENSION
#define DEF_EXTENSION ""
#endif /* DEF_EXTENSION */
#ifndef DIRECTORY_CMDS
#define DIRECTORY_CMDS FALSE
#endif /* DIRECTORY_CMDS */
#ifndef HAVE_UNIX_GCC
#define HAVE_UNIX_GCC FALSE
#endif /* HAVE_UNIX_GCC */
#endif /* HAVE_MVS */
/***************************************************************
This ends the section of definitions that
users of bwBASIC might want to specify.
The following are internally defined.
Note that you might want to #define the default
FILES command and the default EDITOR above.
***************************************************************/
/*
**
**
** If you want to change any of these values,
** then you should #define them above.
**
**
*/
#ifndef HAVE_UNIX_GCC
/*
** TRUE:
** sleep() is an intrinsic C functions in GCC using -ansi
** FALSE:
** sleep() is defined in bwb_int.c to do nothing
**
*/
#define HAVE_UNIX_GCC FALSE
#endif /* HAVE_UNIX_GCC */
#ifndef PROFILE
/*
**
** TRUE:
** automatically execute PROFILENAME line-by-line before parsing command line parameters
** FALSE:
** do not automatically execute PROFILENAME
**
*/
#define PROFILE TRUE
#endif /* PROFILE */
#ifndef PROFILENAME
/*
**
** Filename for PROFILE, only used when PROFILE == TRUE
** This file contains the various OPTION commands
**
*/
#define PROFILENAME "profile.bas"
#endif /* PROFILENAME */
#if FALSE
/*
**
** bwBASIC 3.10: OPTION STDERR "err.out"
** bwBASIC 3.10: OPTION STDERR "LPRINT.OUT"
**
*/
#ifndef REDIRECT_STDERR
/*
**
** redirect STDERR
**
*/
#define REDIRECT_STDERR FALSE
#endif /* REDIRECT_STDERR */
#ifndef ERRFILE
/*
**
** Filename for redirected stderr
**
*/
#define ERRFILE "err.out"
#endif /* ERRFILE */
#ifndef LPRINTFILENAME
/*
**
** Filename for LPRINT output
**
*/
#define LPRINTFILENAME "LPRINT.OUT"
#endif /* LPRINTFILENAME */
#endif /* FALSE */
#ifndef DIRECTORY_CMDS
/*
**
** enable MKDIR, CHDIR, RMDIR
**
*/
#define DIRECTORY_CMDS TRUE
#endif /* DIRECTORY_CMDS */
#ifndef MKDIR_ONE_ARG
/*
**
** TRUE if your mkdir has one argument
** only used when DIRECTORY_CMDS == TRUE
**
*/
#define MKDIR_ONE_ARG FALSE
#endif /* MKDIR_ONE_ARG */
#ifndef PERMISSIONS
/*
**
** permissions to set in a Unix-type system
** only used when MKDIR_ONE_ARG == FALSE
**
*/
#define PERMISSIONS 0x0644
#endif /* PERMISSIONS */
#if FALSE
/*
**
** bwBASIC 3.20: OPTION PROMPT "bwBASIC: "
**
*/
#ifndef DEFVNAME_PROMPT
/*
**
** variable name for PROMPT
**
*/
#define DEFVNAME_PROMPT "BWB.PROMPT$"
#endif /* DEFVNAME_PROMPT */
#endif /* FALSE */
#ifndef DEF_PROMPT
/*
**
** default value for OPTION PROMPT
**
*/
#define DEF_PROMPT "bwBASIC: "
#endif /* DEF_PROMPT */
#ifndef DEF_EXTENSION
/*
**
** default value for OPTION EXTENSION
**
*/
#define DEF_EXTENSION ".bas"
#endif /* DEF_EXTENSION */
#if FALSE
/*
**
** bwBASIC 3.20: OPTION EDIT "vi"
**
*/
#ifndef DEFVNAME_EDITOR
/*
**
** variable name for EDIT command
**
*/
#define DEFVNAME_EDITOR "BWB.EDITOR$"
#endif /* DEFVNAME_EDITOR */
#endif /* FALSE */
#ifndef DEF_EDITOR
/*
**
** default value for OPTION EDIT
**
**/
#define DEF_EDITOR "vi"
#endif /* DEF_EDITOR */
#if FALSE
/*
**
** bwBASIC 3.20: OPTION FILES "ls -Fx"
**
*/
#ifndef DEFVNAME_FILES
/*
**
** variable name for FILES command
**
*/
#define DEFVNAME_FILES "BWB.FILES$"
#endif /* DEFVNAME_FILES */
#endif /* FALSE */
#ifndef DEF_FILES
/*
**
** default value for OPTION FILES
**
*/
#define DEF_FILES "ls -Fx"
#endif /* DEF_FILES */
#if FALSE
/*
**
** bwBASIC 3.20: not used
**
*/
#ifndef DEFVNAME_COLORS
/*
**
** variable name for COLORS
**
*/
#define DEFVNAME_COLORS "BWB.COLORS"
#endif /* DEFVNAME_COLORS */
#ifndef DEF_COLORS
/*
**
** default value for COLORS
**
*/
#define DEF_COLORS 256
#endif /* DEF_COLORS */
#endif /* FALSE */
#if FALSE
/*
**
** bwBASIC 3.20: not used
**
*/
#ifndef DEFVNAME_IMPL
/*
**
** variable name for IMPLEMENTATION
**
*/
#define DEFVNAME_IMPL "BWB.IMPLEMENTATION$"
#endif /* DEFVNAME_IMPL */
#ifndef IMP_IDSTRING
/*
**
** default value for IMPLEMENTATION
**
*/
#define IMP_IDSTRING "TTY"
#endif /* IMP_IDSTRING */
#endif /* FALSE */
#if FALSE
/*
**
** bwBASIC 3.20: OPTION RENUM "renum"
**
*/
#ifndef DEFVNAME_RENUM
/*
**
** variable name for RENUM command
**
*/
#define DEFVNAME_RENUM "BWB.RENUM$"
#endif /* DEFVNAME_RENUM */
#endif /* FALSE */
#ifndef DEF_RENUM
/*
**
** default value for OPTION RENUM
**
*/
#define DEF_RENUM "renum"
#endif /* DEF_RENUM */
#ifndef EXECLEVELS
/*
**
** maximum EXEC stack levels
** only used to prevent run away recursion, such as:
** 100 GOSUB 100
**
*/
#define EXECLEVELS 255
#endif /* EXECLEVELS */
#ifndef MAX_DIMS
/*
**
** maximum number of array dimensions
**
*/
#define MAX_DIMS 3
#endif /* MAX_DIMS */
#if FALSE
/*
**
** bwBASIC 3.10: not used
**
*/
#ifndef ESTACKSIZE
/*
**
** maximum number of elements in expression stack
**
*/
#define ESTACKSIZE 64
#endif /* ESTACKSIZE */
#endif /* FALSE */
/*
** ============================================================
**
**
** UNLESS YOU ARE WORKING ON THE INTERNALS,
** YOU SHOULD NOT GO BEYOND HERE.
** CHANGING ANY OF THESE VALUES IS NOT SUPPORTED.
**
** ============================================================
*/
/*
The relationship of numeric values is REQUIRED to be:
MAXDBL >= MAXSNG >= MAXCUR >= MAXLNG >= MAXINT > MAXLEN >= MAXBYT > 0
MINDBL <= MINSNG <= MINCUR <= MINLNG <= MININT < 0
MINLEN == MINBYT == MINDEV == 0
MAXDEV > 0
MAXBYT == 255
MAXINT >= 32000
MININT <= -32000
MAXSNG >= 1E37
MINSNG <= -1E37
*/
/*
switch( TypeCode )
{
case ByteTypeCode:
break;
case IntegerTypeCode:
break;
case LongTypeCode:
break;
case CurrencyTypeCode:
break;
case SingleTypeCode:
break;
case DoubleTypeCode:
break;
case StringTypeCode:
break;
default:
{ WARN_INTERNAL_ERROR; return ...; }
}
*/
/*-------------------------------------------------------------
BASIC BYTE
OPTION PUNCT BYTE "~"
-------------------------------------------------------------*/
#ifndef ByteTypeCode
typedef unsigned char ByteType;
#define MINBYT 0
#define MAXBYT ( UCHAR_MAX )
#define ByteTypeCode '1'
#endif /* ByteTypeCode */
/*-------------------------------------------------------------
BASIC INTEGER
OPTION PUNCT INTEGER "%"
-------------------------------------------------------------*/
#ifndef IntegerTypeCode
typedef int IntegerType;
#define MININT ( INT_MIN )
#define MAXINT ( INT_MAX )
/*
**
** minimum USER line number
** must be > 0
**
*/
#define MINLIN 1
/*
**
** maximum USER line number
** must be < MAXINT
**
*/
#define MAXLIN ( MAXINT - 1 )
/*
**
** number of digits for line numbers
** line numbers 1 to 99999 use 5 digits
**
*/
#define LineNumberDigits 5
/*
**
** default maximum line length, must be < MAXINT
** OPTION LINE 255
**
*/
#define MAX_LINE_LENGTH 255
#define IntegerTypeCode '2'
#endif /* IntegerTypeCode */
/*-------------------------------------------------------------
BASIC LONG
OPTION PUNCT LONG "&"
-------------------------------------------------------------*/
#ifndef LongTypeCode
typedef long LongType;
#define MINLNG ( LONG_MIN )
#define MAXLNG ( LONG_MAX )
#define HexScanFormat "%lx%n"
#define OctScanFormat "%lo%n"
#define LongTypeCode '3'
#endif /* LongTypeCode */
/*-------------------------------------------------------------
BASIC CURRENCY
OPTION PUNCT CURRENCY "@"
-------------------------------------------------------------*/
#ifndef CurrencyTypeCode
/*
**
** Deprecated, to be removed in bwBASIC 3.30
**
*/
typedef long CurrencyType;
#define MINCUR ( LONG_MIN )
#define MAXCUR ( LONG_MAX )
#define CurrencyTypeCode '4'
#endif /* CurrencyTypeCode */
/*-------------------------------------------------------------
BASIC SINGLE
OPTION PUNCT SINGLE "!"
-------------------------------------------------------------*/
#ifndef SingleTypeCode
typedef float SingleType;
#define MINSNG ( -FLT_MAX )
#define MAXSNG ( FLT_MAX )
#define SingleTypeCode '5'
#endif /* SingleTypeCode */
/*-------------------------------------------------------------
BASIC DOUBLE
OPTION PUNCT DOUBLE "#"
-------------------------------------------------------------*/
#ifndef DoubleTypeCode
typedef double DoubleType;
#define MINDBL ( -DBL_MAX )
#define MAXDBL ( DBL_MAX )
#define DecScanFormat "%lg%n"
#define DoubleTypeCode '6'
#endif /* DoubleTypeCode */
/*-------------------------------------------------------------
BASIC STRING
OPTION PUNCT STRING "$"
-------------------------------------------------------------*/
#ifndef StringTypeCode
/*
**
** minimum length of a BASIC string
** must be zero
**
*/
#define MINLEN 0
/*
**
** maximum length of a BASIC string
** must be < MAXINT
*/
#define MAXLEN 255
#define StringTypeCode '7'
#endif /* StringTypeCode */
/*-------------------------------------------------------------
BASIC DEVICE
-------------------------------------------------------------*/
#ifndef MINDEV
/*
**
** minimum numbwe of OPEN files
** must be zero
**
*/
#define MINDEV 0
#endif /* MINDEV */
#ifndef MAXDEV
/*
**
** maximum numbwe of OPEN files
** not counting stdin, stdout, stderr
**
*/
#define MAXDEV ( FOPEN_MAX - 3 )
#endif /* MAXDEV */
#if FALSE
/*
**
** bwBASIC 3.20: OPTION PUNCT FILENUM "#"
**
*/
#ifndef FileNumberPrefix
#define FileNumberPrefix '#'
#endif /* FileNumberPrefix */
#endif /* FALSE */
/*-------------------------------------------------------------
BASIC MISCELLANEOUS
-------------------------------------------------------------*/
#ifndef NameLengthMax
/*
**
** maximum BASIC keyword length
** Applies to ALL keywords in BASIC, incuding:
** variables, functions, subroutines, commands and labels.
**
*/
#define NameLengthMax 40
#endif /* NameLengthMax */
#ifndef SIGNIFICANT_DIGITS
/*
**
** default setting for OPTION DIGITS
** minimum is 6 for BASIC
** OPTION DIGITS 6
**
*/
#define SIGNIFICANT_DIGITS 6
#endif /* SIGNIFICANT_DIGITS */
#ifndef EXPONENT_DIGITS
/*
**
** number of exrad digits
** minimum value is 2 for BASIC
**
*/
#if (DBL_MAX_10_EXP) < 100
/*
**
** Exponenet range is within 1E-99 to 1E+99
** ANSI C89 requires at least 1E-37 to 1E+37
**
*/
#define EXPONENT_DIGITS 2
#elif (DBL_MAX_10_EXP) < 1000
/*
**
** Exponenet range is within 1E-999 to 1E+999
** includes ANSI/IEEE Std 754-1985
**
*/
#define EXPONENT_DIGITS 3
#elif (DBL_MAX_10_EXP) < 10000
/*
**
** Exponenet range is within 1E-9999 to 1E+9999
**
*/
#define EXPONENT_DIGITS 4
#elif (DBL_MAX_10_EXP) < 100000
/*
**
** Exponenet range is within 1E-99999 to 1E+99999
**
*/
#define EXPONENT_DIGITS 5
#else
/*