FreeBASIC
0.91.0
Main Page
Data Structures
Files
File List
Globals
hook_lineinp.c
Go to the documentation of this file.
1
/* console line input function */
2
3
#include "
fb.h
"
4
5
FBCALL
int
fb_LineInput
6
(
7
FBSTRING
*text,
8
void
*dst,
9
ssize_t dst_len,
10
int
fillrem,
11
int
addquestion,
12
int
addnewline
13
)
14
{
15
FB_LINEINPUTPROC
lineinputproc;
16
17
FB_LOCK
();
18
lineinputproc =
__fb_ctx
.
hooks
.
lineinputproc
;
19
FB_UNLOCK
();
20
21
if
( lineinputproc )
22
return
lineinputproc( text, dst, dst_len, fillrem, addquestion, addnewline );
23
else
24
return
fb_ConsoleLineInput
( text, dst, dst_len, fillrem, addquestion, addnewline );
25
}
rtlib
hook_lineinp.c
Generated on Thu Jan 23 2014 19:40:11 for FreeBASIC by
1.8.4