FreeBASIC  0.91.0
file_input_str.c
Go to the documentation of this file.
1 /* input function */
2 
3 #include "fb.h"
4 
5 FBCALL int fb_InputString( void *dst, ssize_t strlen, int fillrem )
6 {
8  int isfp;
9 
11 
12  fb_StrAssign( dst, strlen, buffer, 0, fillrem );
13 
14  return fb_ErrorSetNum( FB_RTERROR_OK );
15 }