Minor fixes to comments.
[AROS.git] / rom / kernel / maygetchar.c
blob3b967b2a7c71b5ba4fd5cc399241bc05f5bfb61a
1 #include <aros/kernel.h>
3 #include <kernel_base.h>
4 #include <kernel_debug.h>
6 /*****************************************************************************
8 NAME */
9 #include <proto/kernel.h>
11 AROS_LH0(int, KrnMayGetChar,
13 /* SYNOPSIS */
15 /* LOCATION */
16 struct KernelBase *, KernelBase, 26, Kernel)
18 /* FUNCTION
19 Read a single character from low-level debug input stream
21 INPUTS
22 None
24 RESULT
25 An ASCII code of the character or -1 if there's no character
26 available
28 NOTES
29 This function never waits. If there is no character available on
30 the stream it just returns with -1
32 EXAMPLE
34 BUGS
36 SEE ALSO
38 INTERNALS
40 ******************************************************************************/
42 AROS_LIBFUNC_INIT
44 /* The implementation is entirely architecture-specific */
45 return -1;
47 AROS_LIBFUNC_EXIT