mirror of
https://github.com/RGBCube/serenity
synced 2025-05-19 14:25:08 +00:00

This was a workaround to be able to build on case-insensitive file systems where it might get confused about <string.h> vs <String.h>. Let's just not support building that way, so String.h can have an objectively nicer name. :^)
19 lines
331 B
C
19 lines
331 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 };
|
|
};
|
|
|
|
extern GlobalState g;
|