added concrete implementations of putc(), getc(), getchar() and gets()
[tangerine.git] / arch / all-unix / exec / rawmaygetchar.c
blobf1af8d7ea79bf5f9f67482478d784f69135d6f6f
1 /*
2 Copyright © 1995-2007, The AROS Development Team. All rights reserved.
3 $Id$
5 Desc: Check if there is a character on the raw console
6 Lang: english
7 */
9 /*****i***********************************************************************
11 NAME */
12 #include <proto/exec.h>
14 AROS_LH0(LONG, RawMayGetChar,
16 /* LOCATION */
17 struct ExecBase *, SysBase, 85, Exec)
19 /* FUNCTION
20 Check if there is a character on the raw console.
22 INPUTS
23 None.
25 RESULT
26 The character or -1 if there was none.
28 NOTES
29 This function is for very low level debugging only.
31 EXAMPLE
33 BUGS
35 SEE ALSO
36 RawIOInit(), RawPutChar(), RawMayGetChar()
38 INTERNALS
40 HISTORY
42 *****************************************************************************/
44 AROS_LIBFUNC_INIT
46 return -1;
47 AROS_LIBFUNC_EXIT
48 } /* RawMayGetChar */