mirror of
				https://gitlab.com/freepascal.org/fpc/source.git
				synced 2025-11-04 14:39:36 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			16 lines
		
	
	
		
			355 B
		
	
	
	
		
			ObjectPascal
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			355 B
		
	
	
	
		
			ObjectPascal
		
	
	
	
	
	
Program Example54;
 | 
						|
 | 
						|
uses Linux;
 | 
						|
 | 
						|
{ Program to demonstrate the IOCtl function. }
 | 
						|
 | 
						|
var
 | 
						|
  tios : Termios;
 | 
						|
begin
 | 
						|
  IOCtl(1,TCGETS,@tios);
 | 
						|
  WriteLn('Input Flags  : $',hexstr(tios.c_iflag,8));
 | 
						|
  WriteLn('Output Flags : $',hexstr(tios.c_oflag,8));
 | 
						|
  WriteLn('Line Flags   : $',hexstr(tios.c_lflag,8));
 | 
						|
  WriteLn('Control Flags: $',hexstr(tios.c_cflag,8));
 | 
						|
end.
 |