FreeBASIC  0.91.0
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  return fgets( buffer, len, stdin );
9 }