matreshka_league_21.0.0_0c8f4d47/tools/aflex/src/misc.adb

  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
-- Copyright (c) 1990 Regents of the University of California.
-- All rights reserved.
--
-- This software was developed by John Self of the Arcadia project
-- at the University of California, Irvine.
--
-- Redistribution and use in source and binary forms are permitted
-- provided that the above copyright notice and this paragraph are
-- duplicated in all such forms and that any documentation,
-- advertising materials, and other materials related to such
-- distribution and use acknowledge that the software was developed
-- by the University of California, Irvine.  The name of the
-- University may not be used to endorse or promote products derived
-- from this software without specific prior written permission.
-- THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
-- IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
-- WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.

-- TITLE  miscellaneous aflex routines
-- AUTHOR: John Self (UCI)
-- DESCRIPTION
-- NOTES contains functions used in various places throughout aflex.
-- $Header: /dc/uc/self/arcadia/aflex/ada/src/RCS/miscB.a,v 1.22 1991/07/01 21:30:37 self Exp self $

with Ada.Calendar;
with Ada.Characters.Conversions;
with Ada.Directories;
with Ada.Integer_Wide_Wide_Text_IO;
with Ada.Strings.Wide_Wide_Unbounded.Wide_Wide_Text_IO;

with MISC, Main_Body;
use MISC;

package body MISC is

   use Ada.Characters.Conversions;
   use Ada.Integer_Wide_Wide_Text_IO;
   use Ada.Strings.Wide_Wide_Unbounded;
   use Ada.Strings.Wide_Wide_Unbounded.Wide_Wide_Text_IO;
   use Ada.Wide_Wide_Text_IO;
   use Unicode;

   function "+" (Item : String) return Unbounded_String
     renames To_Unbounded_String;

   function "+" (Item : Unbounded_String) return String
     renames To_String;

   function "+" (Item : Wide_Wide_String) return Unbounded_Wide_Wide_String
     renames To_Unbounded_Wide_Wide_String;

  -- action_out - write the actions from the temporary file to lex.yy.c

   procedure Action_OUT is
      Buf : Unbounded_Wide_Wide_String;

   begin
      while not End_Of_File (Temp_Action_File) loop
         GET_LINE (Temp_Action_File, Buf);
         if Length (BUF) >= 2
           and then Slice (Buf, 1, 2) = "%%"
         then
            exit;
         else
            PUT_LINE(BUF);
         end if;
      end loop;
   end ACTION_OUT;

  -- bubble - bubble sort an integer array in increasing order
  --
  -- description
  --   sorts the first n elements of array v and replaces them in
  --   increasing order.
  --
  -- passed
  --   v - the array to be sorted
  --   n - the number of elements of 'v' to be sorted

  procedure BUBBLE(V : in INT_PTR;
                   N : in INTEGER) is
    K : INTEGER;
  begin
    for I in reverse 2 .. N loop
      for J in 1 .. I - 1 loop
        if (V(J) > V(J + 1)) then

          -- compare
          K := V(J);

          -- exchange
          V(J) := V(J + 1);
          V(J + 1) := K;
        end if;
      end loop;
    end loop;
  end BUBBLE;


  -- clower - replace upper-case letter to lower-case

  function CLOWER(C : in INTEGER) return INTEGER is
  begin
    if (ISUPPER(CHARACTER'VAL(C))) then
      return TOLOWER(C);
    else
      return C;
    end if;
  end CLOWER;

   ------------
   -- CSHELL --
   ------------

   procedure CSHELL
    (V : in out Unicode_Character_Array;
     N : Integer)
   is
      GAP, J, JG  : INTEGER;
      K           : Unicode_Character;
      LOWER_BOUND : constant INTEGER := V'FIRST;

   begin
      GAP := N / 2;

      while GAP > 0 loop
         for I in GAP .. N - 1 loop
            J := I - GAP;
            while (J >= 0) loop
               JG := J + GAP;

               if (V(J + LOWER_BOUND) <= V(JG + LOWER_BOUND)) then
                  exit;
               end if;

               K := V (J + LOWER_BOUND);
               V(J + LOWER_BOUND) := V(JG + LOWER_BOUND);
               V(JG + LOWER_BOUND) := K;
               J := J - GAP;
            end loop;
         end loop;

         GAP := GAP/2;
      end loop;
   end CSHELL;

  -- dataend - finish up a block of data declarations

   procedure DATAEND is
   begin
      if (DATAPOS > 0) then
         DATAFLUSH;

         -- add terminator for initialization
         Put_Line ("    );");
         New_Line;

         DATALINE := 0;
      end if;
   end DATAEND;

   ---------------
   -- DATAFLUSH --
   ---------------

   -- dataflush - flush generated data statements

   procedure DATAFLUSH (File : Ada.Wide_Wide_Text_IO.File_Type) is
   begin
      New_Line (File);
      DATALINE := DATALINE + 1;

      if DATALINE >= NUMDATALINES then
         -- put out a blank line so that the table is grouped into
         -- large blocks that enable the user to find elements easily

         New_Line (File);
         DATALINE := 0;
      end if;

      -- reset the number of characters written on the current line

      DATAPOS := 0;
   end DATAFLUSH;

   ---------------
   -- DATAFLUSH --
   ---------------

   procedure DATAFLUSH is
   begin
      DATAFLUSH (CURRENT_OUTPUT);
   end DATAFLUSH;

   --------------------
   -- Aflex_Get_Time --
   --------------------

   function Aflex_Get_Time return Unbounded_Wide_Wide_String is

      use Ada.Calendar;

      Seconds_Per_Hour : constant Day_Duration := 3600.0;

      Current_Time     : Time;
      Current_Year     : Year_Number;
      Current_Month    : Month_Number;
      Current_Day      : Day_Number;
      Current_Seconds  : Day_Duration;
      Month_String     : Unbounded_Wide_Wide_String;
      Hour_String      : Unbounded_Wide_Wide_String;
      Minute_String    : Unbounded_Wide_Wide_String;
      Second_String    : Unbounded_Wide_Wide_String;
      Hour             : Integer;
      Minute           : Integer;
      Second           : Integer;

   begin
      Current_Time := Clock;
      Split
       (Current_Time,
        Current_Year,
        Current_Month,
        Current_Day,
        Current_Seconds);

      case Current_Month is
         when 1 =>
            Month_String := +"Jan";
         when 2 =>
            Month_String := +"Feb";
         when 3 =>
            Month_String := +"Mar";
         when 4 =>
            Month_String := +"Apr";
         when 5 =>
            Month_String := +"May";
         when 6 =>
            Month_String := +"Jun";
         when 7 =>
            Month_String := +"Jul";
         when 8 =>
            Month_String := +"Aug";
         when 9 =>
            Month_String := +"Sep";
         when 10 =>
            Month_String := +"Oct";
         when 11 =>
            Month_String := +"Nov";
         when 12 =>
            Month_String := +"Dec";
      end case;

      Hour   := Integer (Current_Seconds) / Integer (Seconds_Per_Hour);
      Minute := Integer ((Current_Seconds - (Hour * Seconds_Per_Hour)) / 60);
      Second :=
        Integer (Current_Seconds - Hour * Seconds_Per_Hour - Minute * 60.0);

      if Hour >= 10 then
         Hour_String := +Integer'Wide_Wide_Image (Hour) (2 .. 3);

      else
         Hour_String := +"0" & Integer'Wide_Wide_Image (Hour) (2);
      end if;

      if Minute >= 10 then
         Minute_String := +Integer'Wide_Wide_Image (Minute) (2 .. 3);

      else
         Minute_String := +"0" & Integer'Wide_Wide_Image (Minute) (2);
      end if;

      if Second >= 10 then
         Second_String := +Integer'Wide_Wide_Image (Second) (2 .. 3);

      else
         Second_String := +"0" & Integer'Wide_Wide_Image (Second) (2);
      end if;

      return
        Month_String
          & Integer'Wide_Wide_Image (Current_Day)
          & Hour_String
          & ":"
          & Minute_String
          & ":"
          & Second_String
          & Integer'Wide_Wide_Image (Current_Year);
   end Aflex_Get_Time;

   -----------------
   -- Aflex_Error --
   -----------------

   procedure Aflex_Error (Msg : Unbounded_Wide_Wide_String) is
   begin
      Put (Standard_Error, "aflex: " & Msg);
      New_Line (Standard_Error);
      Main_Body.Aflex_End (1);
   end Aflex_Error;

   -----------------
   -- Aflex_Error --
   -----------------

   procedure Aflex_Error (Msg : Wide_Wide_String) is
   begin
      Put (Standard_Error, "aflex: " & Msg);
      New_Line (Standard_Error);
      Main_Body.Aflex_End (1);
   end Aflex_Error;

   -----------------
   -- Aflex_Fatal --
   -----------------

   procedure Aflex_Fatal (Msg : Wide_Wide_String) is
   begin
      Put (Standard_Error, "aflex: fatal internal error " & Msg);
      New_Line (Standard_Error);
      Main_Body.Aflex_End (1);
   end Aflex_Fatal;

   -----------------
   -- Aflex_Fatal --
   -----------------

   procedure Aflex_Fatal
     (Msg : Ada.Strings.Wide_Wide_Unbounded.Unbounded_Wide_Wide_String) is
   begin
      Put (Standard_Error, "aflex: fatal internal error " & Msg);
      New_Line (Standard_Error);
      Main_Body.Aflex_End (1);
   end Aflex_Fatal;

   --------------
   -- Basename --
   --------------

   function Basename
     return Ada.Strings.Wide_Wide_Unbounded.Unbounded_Wide_Wide_String is
   begin
      if Length (In_File_Name) = 0 then
         -- if reading standard input give everything this name

         return +"aflex_yy";
      end if;

      return +To_Wide_Wide_String (Ada.Directories.Base_Name (+In_File_Name));
   end Basename;

   ------------------------
   -- LINE_DIRECTIVE_OUT --
   ------------------------

   -- line_directive_out - spit out a "# line" statement

   procedure LINE_DIRECTIVE_OUT
     (OUTPUT_FILE_NAME : Ada.Wide_Wide_Text_IO.File_Type) is
   begin
      if GEN_LINE_DIRS then
         Put (OUTPUT_FILE_NAME, "--# line ");
         Put (OUTPUT_FILE_NAME, LINENUM, 1);
         Put (OUTPUT_FILE_NAME, " """);
         Put
           (OUTPUT_FILE_NAME, To_Wide_Wide_String (To_String (In_File_Name)));
         Put_Line (OUTPUT_FILE_NAME, """");
      end if;
   end LINE_DIRECTIVE_OUT;

   ------------------------
   -- LINE_DIRECTIVE_OUT --
   ------------------------

   procedure LINE_DIRECTIVE_OUT is
   begin
      if (GEN_LINE_DIRS) then
         PUT("--# line ");
         PUT(LINENUM, 1);
         PUT(" """);
         PUT(To_Wide_Wide_String (To_String (In_File_Name)));
         PUT_LINE("""");
      end if;
   end LINE_DIRECTIVE_OUT;

  -- all_upper - returns true if a string is all upper-case
--    function ALL_UPPER(STR : in VSTRING) return BOOLEAN is
--    begin
--      for I in 1 .. LEN(STR) loop
--        if (not ((CHAR(STR, I) >= 'A') and (CHAR(STR, I) <= 'Z'))) then
--          return FALSE;
--        end if;
--      end loop;
--      return TRUE;
--    end ALL_UPPER;

  -- all_lower - returns true if a string is all lower-case
--    function ALL_LOWER(STR : in VSTRING) return BOOLEAN is
--    begin
--      for I in 1 .. LEN(STR) loop
--        if (not ((CHAR(STR, I) >= 'a') and (CHAR(STR, I) <= 'z'))) then
--          return FALSE;
--        end if;
--      end loop;
--      return TRUE;
--    end ALL_LOWER;

   -------------
   -- MK2DATA --
   -------------

   -- mk2data - generate a data statement for a two-dimensional array
   --
   --  generates a data statement initializing the current 2-D array to "value"

   procedure MK2DATA
     (File  : Ada.Wide_Wide_Text_IO.File_Type;
      Value : Integer) is
   begin
      if DATAPOS >= NUMDATAITEMS then
         PUT (FILE, ',');
         DATAFLUSH (FILE);
      end if;

      if DATAPOS = 0 then
         -- indent

         PUT (FILE, "    ");

      else
         PUT (FILE, ',');
      end if;

      DATAPOS := DATAPOS + 1;

      PUT (FILE, VALUE, 5);
   end MK2DATA;

  --
  --  generates a data statement initializing the current array element to
  --  "value"

  procedure MKDATA(VALUE : in INTEGER) is
  begin
    if (DATAPOS >= NUMDATAITEMS) then
      PUT(',');
      DATAFLUSH;
    end if;

    if (DATAPOS = 0) then

      -- indent
      PUT("    ");
    else
      PUT(',');
    end if;

    DATAPOS := DATAPOS + 1;

    PUT(VALUE, 5);
  end MKDATA;

   ------------
   -- MYCTOI --
   ------------

   -- myctoi - return the integer represented by a string of digits

   function MYCTOI
     (NUM_ARRAY : Ada.Strings.Wide_Wide_Unbounded.Unbounded_Wide_Wide_String)
      return INTEGER
   is
      TOTAL : INTEGER := 0;
      CNT   : INTEGER := 1;

   begin
      while CNT <= Length (NUM_ARRAY) loop
         TOTAL := TOTAL*10;
         TOTAL :=
           TOTAL
             + Wide_Wide_Character'Pos (Element (NUM_ARRAY, CNT))
             - CHARACTER'POS('0');
         CNT := CNT + 1;
      end loop;

      return TOTAL;
   end MYCTOI;

   -----------
   -- MYESC --
   -----------

   function MYESC
     (ARR : Ada.Strings.Wide_Wide_Unbounded.Unbounded_Wide_Wide_String)
      return Unicode.Unicode_Character is
   begin
      case Element (ARR, 2) is
         when 'a' =>
            return Unicode.BEL;

         when 'b' =>
            return Unicode.BS;

         when 'f' =>
            return Unicode.FF;

         when 'n' =>
            return Unicode.LF;

         when 'r' =>
            return Unicode.CR;

         when 't' =>
            return Unicode.HT;

         when 'v' =>
            return Unicode.VT;

         when 'u' =>
            -- \u<Unicode>

            declare
               Esc_Char : constant Unicode_Character
                 := Unicode_Character'Val
                     (Integer'Wide_Wide_Value
                       ("16#" & Slice (Arr, 3, Length (Arr)) & "#"));

            begin
               if (ESC_CHAR = Unicode.NUL) then
                  MISC.SYNERR("escape sequence for null not allowed");

                  return Unicode.SOH;
               end if;

               return ESC_CHAR;
            end;

         when '0' | '1' | '2' | '3' | '4' | '5' | '6' | '7' | '8' | '9' =>
            -- \<octal>

            declare
               ESC_CHAR : Wide_Wide_Character;

            begin
               ESC_CHAR :=
                 OTOI (Unbounded_Slice (ARR, 2, Length (ARR)));

               if (ESC_CHAR = NUL) then
                  MISC.SYNERR("escape sequence for null not allowed");

                  return Unicode.SOH;
               end if;

               return ESC_CHAR;
            end;

         when others =>
            return Element (ARR, 2);
      end case;
  end MYESC;

   ----------
   -- OTOI --
   ----------

   -- otoi - convert an octal digit string to an integer value

   function OTOI
     (STR : Ada.Strings.Wide_Wide_Unbounded.Unbounded_Wide_Wide_String)
      return Wide_Wide_Character
   is
      TOTAL : INTEGER := 0;
      CNT   : INTEGER := 1;

   begin
      while CNT <= Length (STR) loop
         TOTAL := TOTAL*8;
         TOTAL :=
           TOTAL + Wide_Wide_Character'Pos (Element (STR, CNT))
             - CHARACTER'POS('0');
         CNT := CNT + 1;
      end loop;

      return Wide_Wide_Character'Val (TOTAL);
   end OTOI;

   -------------------
   -- Readable_Form --
   -------------------

  -- readable_form - return the the human-readable form of a character
  --
  -- The returned string is in static storage.

   function Readable_Form (C : Wide_Wide_Character) return Unbounded_String is
      To_Hex_Digit : constant String := "0123456789ABCDEF";
      Code         : constant Integer := Wide_Wide_Character'Pos (C);

   begin
      if Code <= 16#FFFF# then
         case C is
            when LF =>
               --  Newline

               return +"\n";

            when HT =>
               --  Horizontal Tab

               return +"\t";

            when FF =>
               --  Form Feed

               return +"\f";

            when CR =>
               --  Carriage Return

               return +"\r";

            when BS =>
               --  Backspace

               return +"\b";

            when ' ' =>
               --  Space

               return +"' '";

            when Wide_Wide_Character'Val (33)
               .. Wide_Wide_Character'Val (127) =>
               return
                 +String'
                 (1 .. 1 => Character'Val (Wide_Wide_Character'Pos (C)));

            when others =>
               declare
                  Image : String (1 .. 6) := "\uXXXX";

               begin
                  Image (3) := To_Hex_Digit ((Code / 2 ** 12) mod 16 + 1);
                  Image (4) := To_Hex_Digit ((Code / 2 ** 8) mod 16 + 1);
                  Image (5) := To_Hex_Digit ((Code / 2 ** 4) mod 16 + 1);
                  Image (6) := To_Hex_Digit (Code mod 16 + 1);

                  return +Image;
               end;
         end case;

      else
         declare
            Image : String (1 .. 8) := "\uXXXXXX";

         begin
            Image (3) := To_Hex_Digit (Code / 2 ** 20 + 1);
            Image (4) := To_Hex_Digit ((Code / 2 ** 16) mod 2 ** 4 + 1);
            Image (5) := To_Hex_Digit ((Code / 2 ** 12) mod 2 ** 4 + 1);
            Image (6) := To_Hex_Digit ((Code / 2 ** 8) mod 2 ** 4 + 1);
            Image (7) := To_Hex_Digit ((Code / 2 ** 4) mod 2 ** 4 + 1);
            Image (8) := To_Hex_Digit (Code mod 2 ** 4 + 1);

            return +Image;
         end;
      end if;
   end Readable_Form;

  -- transition_struct_out - output a yy_trans_info structure
  --
  -- outputs the yy_trans_info structure with the two elements, element_v and
  -- element_n.  Formats the output with spaces and carriage returns.

  procedure TRANSITION_STRUCT_OUT(ELEMENT_V, ELEMENT_N : in INTEGER) is
  begin
    PUT(ELEMENT_V, 7);
    PUT(", ");
    PUT(ELEMENT_N, 5);
    PUT(",");
    DATAPOS := DATAPOS + TRANS_STRUCT_PRINT_LENGTH;

    if (DATAPOS >= 75) then
      NEW_LINE;

      DATALINE := DATALINE + 1;

      if DATALINE mod 10 = 0 then
        NEW_LINE;
      end if;

      DATAPOS := 0;
    end if;
  end TRANSITION_STRUCT_OUT;

  function SET_YY_TRAILING_HEAD_MASK(SRC : in INTEGER) return INTEGER is
  begin
    if (CHECK_YY_TRAILING_HEAD_MASK(SRC) = 0) then
      return SRC + YY_TRAILING_HEAD_MASK;
    else
      return SRC;
    end if;
  end SET_YY_TRAILING_HEAD_MASK;

  function CHECK_YY_TRAILING_HEAD_MASK(SRC : in INTEGER) return INTEGER is
  begin
    if (SRC >= YY_TRAILING_HEAD_MASK) then
      return YY_TRAILING_HEAD_MASK;
    else
      return 0;
    end if;
  end CHECK_YY_TRAILING_HEAD_MASK;

  function SET_YY_TRAILING_MASK(SRC : in INTEGER) return INTEGER is
  begin
    if (CHECK_YY_TRAILING_MASK(SRC) = 0) then
      return SRC + YY_TRAILING_MASK;
    else
      return SRC;
    end if;
  end SET_YY_TRAILING_MASK;

  function CHECK_YY_TRAILING_MASK(SRC : in INTEGER) return INTEGER is
  begin

-- this test is whether both bits are on, or whether onlyy TRAIL_MASK is set
    if ((SRC >= YY_TRAILING_HEAD_MASK + YY_TRAILING_MASK) or ((
      CHECK_YY_TRAILING_HEAD_MASK(SRC) = 0) and (SRC >= YY_TRAILING_MASK)))
      then
      return YY_TRAILING_MASK;
    else
      return 0;
    end if;
  end CHECK_YY_TRAILING_MASK;

  function ISLOWER(C : in CHARACTER) return BOOLEAN is
  begin
    return (C in 'a' .. 'z');
  end ISLOWER;


  function ISUPPER(C : in CHARACTER) return BOOLEAN is
  begin
    return (C in 'A' .. 'Z');
  end ISUPPER;

  function ISDIGIT(C : in CHARACTER) return BOOLEAN is
  begin
    return (C in '0' .. '9');
  end ISDIGIT;

  function TOLOWER(C : in INTEGER) return INTEGER is
  begin
    return C - CHARACTER'POS('A') + CHARACTER'POS('a');
  end TOLOWER;

   procedure SYNERR (STR : in Wide_Wide_String) is
   begin
      SYNTAXERROR := TRUE;
      PUT (STANDARD_ERROR, "Syntax error at line ");
      PUT (STANDARD_ERROR, LINENUM);
      PUT (STANDARD_ERROR, STR);
      NEW_LINE (STANDARD_ERROR);
   end SYNERR;

end MISC;