mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 10:22:45 +00:00 
			
		
		
		
	 ba7364b43b
			
		
	
	
		ba7364b43b
		
	
	
	
	
		
			
			To be clear, there isn't really any line editing yet. But there is going to be, so let's have it in its own class.
		
			
				
	
	
		
			18 lines
		
	
	
	
		
			301 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
	
		
			301 B
		
	
	
	
		
			C
		
	
	
	
	
	
| #pragma once
 | |
| 
 | |
| #include <AK/AKString.h>
 | |
| #include <termios.h>
 | |
| 
 | |
| struct GlobalState {
 | |
|     String cwd;
 | |
|     String username;
 | |
|     String home;
 | |
|     char ttyname[32];
 | |
|     char hostname[32];
 | |
|     pid_t sid;
 | |
|     uid_t uid;
 | |
|     struct termios termios;
 | |
|     bool was_interrupted { false };
 | |
| };
 | |
| 
 | |
| extern GlobalState g;
 |