FreeBASIC  0.91.0
intl_getset.c
Go to the documentation of this file.
1 /* turns internationalization on/off and queries status */
2 
3 #include "fb.h"
4 
5 static int intl_on = TRUE;
6 
7 /*:::::*/
8 FBCALL void fb_I18nSet( int on_off )
9 {
10  intl_on = on_off!=0;
11 }
12 
13 /*:::::*/
14 FBCALL int fb_I18nGet( void )
15 {
16  return intl_on;
17 }