From 29138fff8643194ec49cb79304d2a878d46c378b Mon Sep 17 00:00:00 2001 From: Nicholas Noll Date: Tue, 16 Nov 2021 12:08:59 -0800 Subject: Feat: added heredocs Heredocs are simply strings written to tmp files. There was minimal bug testing here. Also, various bug fixes are included --- src/cmd/rc/exec.h | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'src/cmd/rc/exec.h') diff --git a/src/cmd/rc/exec.h b/src/cmd/rc/exec.h index 1a81644..9db7e60 100644 --- a/src/cmd/rc/exec.h +++ b/src/cmd/rc/exec.h @@ -7,6 +7,13 @@ * code in line with jump around {...} */ +void Xnewpgid(void); +void Xunmark(void); +void Xwrite(void); +void Xread(void); +void Xrdwr(void); +void Xappend(void); +void Xdelhere(void); void Xcase(void); void Xfunc(void); void Xmatch(void); @@ -34,6 +41,7 @@ void Xflat(void); void Xpipe(void); void Xpipewait(void); void Xpopredir(void); +void Xglob(void); void Xreturn(void); void Xexit(void); -- cgit v1.2.1