FreeBASIC
0.91.0
Main Page
Data Structures
Files
File List
Globals
io_readstr.c
Go to the documentation of this file.
1
/* console line input function */
2
3
#include "../fb.h"
4
#include "
fb_private_console.h
"
5
6
char
*
fb_ConsoleReadStr
(
char
*
buffer
, ssize_t len )
7
{
8
char
*res;
9
10
fb_hRestoreConsoleWindow
( );
11
FB_CON_CORRECT_POSITION
();
12
fb_hConsolePutBackEvents
( );
13
14
res = fgets( buffer, len, stdin );
15
16
fb_hUpdateConsoleWindow
( );
17
18
return
res;
19
}
rtlib
win32
io_readstr.c
Generated on Thu Jan 23 2014 19:40:09 for FreeBASIC by
1.8.4