FreeBASIC  0.91.0
file_input_wstr.c
Go to the documentation of this file.
1 /* input function for wstring's */
2 
3 #include "fb.h"
4 
5 FBCALL int fb_InputWstr( FB_WCHAR *str, ssize_t length )
6 {
8 
10 
11  fb_WstrAssign( str, length, buffer );
12  return fb_ErrorSetNum( FB_RTERROR_OK );
13 }