FreeBASIC  0.91.0
io_printvoid_wstr.c
Go to the documentation of this file.
1 /* print functions */
2 
3 #include "fb.h"
4 
5 /*:::::*/
7  (
9  int mask
10  )
11 {
12  if( mask & FB_PRINT_BIN_NEWLINE )
13  {
14  FB_PRINTWSTR_EX( handle,
16  sizeof( FB_BINARY_NEWLINE_WSTR ) / sizeof( FB_WCHAR ) - 1,
17  mask );
18  }
19  else if( mask & FB_PRINT_NEWLINE )
20  {
21  FB_PRINTWSTR_EX( handle,
23  sizeof( FB_NEWLINE_WSTR ) / sizeof( FB_WCHAR ) - 1,
24  mask );
25  }
26  else if( mask & FB_PRINT_PAD )
27  {
28  fb_PrintPadWstrEx( handle, mask & ~FB_PRINT_HLMASK );
29  }
30 }
31 
32 /*:::::*/
34  (
35  int fnum, int mask
36  )
37 {
39 }