mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-06-24 03:02:23 +00:00
parent
c6e79bd53a
commit
aee99b05a6
Notes:
sideshowbarker
2024-07-19 13:56:58 +09:00
Author: https://github.com/rburchell
Commit: aee99b05a6
Pull-request: https://github.com/SerenityOS/serenity/pull/96
3 changed files with 72 additions and 37 deletions
|
@ -4,7 +4,7 @@
|
|||
#include <AK/Vector.h>
|
||||
|
||||
struct Redirection {
|
||||
enum Type { Pipe, FileWrite, FileRead, Rewire };
|
||||
enum Type { Pipe, FileWrite, FileWriteAppend, FileRead, Rewire };
|
||||
Type type;
|
||||
int fd { -1 };
|
||||
int rewire_fd { -1 };
|
||||
|
@ -33,6 +33,7 @@ private:
|
|||
Free,
|
||||
InSingleQuotes,
|
||||
InDoubleQuotes,
|
||||
InWriteAppendOrRedirectionPath,
|
||||
InRedirectionPath,
|
||||
};
|
||||
State m_state { Free };
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue