mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-01-07 00:56:14 +00:00
21 lines
363 B
C
21 lines
363 B
C
#pragma once
|
|
|
|
#include <AK/String.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 };
|
|
bool was_resized { false };
|
|
int last_return_code { 0 };
|
|
};
|
|
|
|
extern GlobalState g;
|