mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-12-08 06:09:58 +00:00
19 lines
301 B
C
19 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;
|