FreeBASIC  0.91.0
io_printbuff_wstr.c
Go to the documentation of this file.
1 /* low-level print to console function */
2 
3 #include "../fb.h"
4 
6  (
7  const FB_WCHAR *buffer,
8  size_t chars,
9  int mask
10  )
11 {
12  /* !!!WRITEME!!! */
13 }
14 
16  (
17  const FB_WCHAR *buffer,
18  int mask
19  )
20 {
21  return fb_ConsolePrintBufferWstrEx( buffer, fb_wstr_Len( buffer ), mask );
22 }