FreeBASIC  0.91.0
io_getx.c
Go to the documentation of this file.
1 #include "../fb.h"
2 #include "fb_private_console.h"
3 
4 int fb_ConsoleGetX( void )
5 {
6  int x;
7  fb_ConsoleGetXY( &x, NULL );
8  return x;
9 }