FreeBASIC
0.91.0
Main Page
Data Structures
Files
File List
Globals
io_printvoid_wstr.c
Go to the documentation of this file.
1
/* print functions */
2
3
#include "
fb.h
"
4
5
/*:::::*/
6
void
fb_PrintVoidWstrEx
7
(
8
FB_FILE
*
handle
,
9
int
mask
10
)
11
{
12
if
( mask &
FB_PRINT_BIN_NEWLINE
)
13
{
14
FB_PRINTWSTR_EX
( handle,
15
FB_BINARY_NEWLINE_WSTR
,
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,
22
FB_NEWLINE_WSTR
,
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
/*:::::*/
33
FBCALL
void
fb_PrintVoidWstr
34
(
35
int
fnum,
int
mask
36
)
37
{
38
fb_PrintVoidWstrEx
(
FB_FILE_TO_HANDLE
(fnum), mask );
39
}
rtlib
io_printvoid_wstr.c
Generated on Thu Jan 23 2014 19:40:12 for FreeBASIC by
1.8.4