DEADSOFTWARE

Mirror gpcp-32255
[gpcp-linux.git] / libs / cpascal / StdIn.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: StdIn.cps
9 * when compiled with the -special flag.
10 *)
11 SYSTEM MODULE StdIn;
13 PROCEDURE SkipLn*();
14 (* Read past next line marker *)
16 PROCEDURE ReadLn*(OUT arr : ARRAY OF CHAR);
17 (* Read a line of text, discarding EOL *)
19 PROCEDURE More*() : BOOLEAN; (* Return TRUE in gpcp v1.3! *)
21 PROCEDURE Read*(OUT ch : CHAR); (* Get next character *)
23 END StdIn.