FreeBASIC
0.91.0
Main Page
Data Structures
Files
File List
Globals
io_writebyte.c
Go to the documentation of this file.
1
/* write [#] functions */
2
3
#include "
fb.h
"
4
5
/*:::::*/
6
FBCALL
void
fb_WriteByte
(
int
fnum,
char
val,
int
mask )
7
{
8
FB_WRITENUM
( fnum, val, mask,
"%d"
);
9
}
10
11
/*:::::*/
12
FBCALL
void
fb_WriteUByte
(
int
fnum,
unsigned
char
val,
int
mask )
13
{
14
FB_WRITENUM
( fnum, val, mask,
"%u"
);
15
}
rtlib
io_writebyte.c
Generated on Thu Jan 23 2014 19:40:12 for FreeBASIC by
1.8.4