FreeBASIC  0.91.0
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 }