FreeBASIC  0.91.0
io_printbuff.c
Go to the documentation of this file.
1 /* low-level print to console function stub */
2 
3 #include "../fb.h"
4 
5 void fb_ConsolePrintBufferEx( const void *buffer, size_t len, int mask )
6 {
7 }
8 
9 void fb_ConsolePrintBuffer( const char *buffer, int mask )
10 {
11  fb_ConsolePrintBufferEx( buffer, strlen(buffer), mask );
12 }