FreeBASIC  0.91.0
con_print_tty.c
Go to the documentation of this file.
1 /* print text data - using TTY (teletype) interpretation */
2 
3 #include "fb.h"
4 
5 #define FB_CONPRINTTTY fb_ConPrintTTY
6 #define FB_CONPRINTRAW fb_ConPrintRaw
7 #define FB_TCHAR char
8 #define FB_TCHAR_GET(p) (*(p))
9 #define FB_TCHAR_ADVANCE(i,c) i += c
10 #define FB_TCHAR_GET_CHAR_SIZE(p) 1
11 #define _TC(c) c
12 
13 #include "con_print_tty_uni.h"