FreeBASIC  0.91.0
file_print_wstr.c
Go to the documentation of this file.
1 /* print # function (formating is done at io_prn) */
2 
3 #include "fb.h"
4 
5 /*:::::*/
7  (
9  const FB_WCHAR *buffer,
10  size_t len
11  )
12 {
13  int res;
14 
16 
17  if( !FB_HANDLE_USED(handle) )
19 
20  res = fb_FilePutDataEx( handle, 0, buffer, len, TRUE, TRUE, TRUE );
21 
22  return res;
23 }
24 
25 /*:::::*/
27  (
28  int fnum,
29  const FB_WCHAR *buffer
30  )
31 {
33  buffer, fb_wstr_Len( buffer ) );
34 }