FreeBASIC  0.91.0
file_lineinp_wstr.c
Go to the documentation of this file.
1 /* line input function for wstrings */
2 
3 #include "fb.h"
4 
5 FBCALL int fb_FileLineInputWstr( int fnum, FB_WCHAR *dst, ssize_t max_chars )
6 {
8 
9  if( !FB_HANDLE_USED(handle) )
11 
12  if( handle->hooks->pfnReadLineWstr == NULL )
14 
15  return handle->hooks->pfnReadLineWstr( handle, dst, max_chars );
16 }