FreeBASIC  0.91.0
con_print_tty_wstr.c
Go to the documentation of this file.
1 /* print wide text data - using TTY (teletype) interpretation */
2 
3 #include "fb.h"
4 
5 #define FB_CONPRINTTTY fb_ConPrintTTYWstr
6 #define FB_CONPRINTRAW fb_ConPrintRawWstr
7 #define FB_TCHAR FB_WCHAR
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) _LC(c)
12 
13 #include "con_print_tty_uni.h"