DEADSOFTWARE

Remove batch
[gpcp-linux.git] / gpcp / Console.cp
1 (*
2 * Library module for GP Component Pascal.
3 * Low level reading and writing to the command-line console.
4 * Original : kjg November 1998
5 *
6 *
7 * This is a dummy module, it exists only to cause the
8 * generation of a corresponding symbol file: Console.cps
9 * when compiled with the -special flag.
10 *)
11 SYSTEM MODULE Console;
13 PROCEDURE WriteLn*();
15 PROCEDURE Write*(ch : CHAR);
17 PROCEDURE WriteString*(IN str : ARRAY OF CHAR);
19 PROCEDURE WriteInt*(val : INTEGER; width : INTEGER);
21 PROCEDURE WriteHex*(val : INTEGER; width : INTEGER);
23 END Console.