FreeBASIC  0.91.0
hook_isredir.c
Go to the documentation of this file.
1 /* input/ouput redirection check */
2 
3 #include "fb.h"
4 
5 /*:::::*/
6 FBCALL int fb_IsRedirected ( int is_input )
7 {
9  return __fb_ctx.hooks.isredirproc( is_input );
10  else
11  return fb_ConsoleIsRedirected( is_input );
12 }
13