BSD 4_2 release
[unix-history] / usr / src / usr.bin / tip / cmdtab.c
index 28f0248..1f0f6c5 100644 (file)
@@ -1,12 +1,14 @@
-/*     cmdtab.c        4.4     81/11/29        */
+#ifndef lint
+static char sccsid[] = "@(#)cmdtab.c   4.6 (Berkeley) 6/25/83";
+#endif
+
 #include "tip.h"
 
 #include "tip.h"
 
-extern int shell(), getfl(), sendfile(), chdirectory(),
-       finish(), help(), pipefile(), consh(), variable(),
-       cu_take(), cu_put(), dollar(), genbrk(), suspend();
+extern int shell(), getfl(), sendfile(), chdirectory();
+extern int finish(), help(), pipefile(), consh(), variable();
+extern int cu_take(), cu_put(), dollar(), genbrk(), suspend();
 
 
-esctable_t etable[] =
-{
+esctable_t etable[] = {
        { '!',  NORM,   "shell",                         shell },
        { '<',  NORM,   "receive file from remote host", getfl },
        { '>',  NORM,   "send file to remote host",      sendfile },
        { '!',  NORM,   "shell",                         shell },
        { '<',  NORM,   "receive file from remote host", getfl },
        { '>',  NORM,   "send file to remote host",      sendfile },
@@ -14,14 +16,12 @@ esctable_t etable[] =
        { 'p',  NORM,   "put file to remote UNIX",       cu_put },
        { '|',  NORM,   "pipe remote file",              pipefile },
 #ifdef CONNECT
        { 'p',  NORM,   "put file to remote UNIX",       cu_put },
        { '|',  NORM,   "pipe remote file",              pipefile },
 #ifdef CONNECT
-       { '%',  NORM,   "connect program to remote host",consh },
+       { 'C',  NORM,   "connect program to remote host",consh },
 #endif
        { 'c',  NORM,   "change directory",              chdirectory },
        { '.',  NORM,   "exit from tip",                 finish },
        {CTRL(d),NORM,  "exit from tip",                 finish },
 #endif
        { 'c',  NORM,   "change directory",              chdirectory },
        { '.',  NORM,   "exit from tip",                 finish },
        {CTRL(d),NORM,  "exit from tip",                 finish },
-#ifdef SIGTSTP
        {CTRL(z),NORM,  "suspend tip",                   suspend },
        {CTRL(z),NORM,  "suspend tip",                   suspend },
-#endif
        { 's',  NORM,   "set variable",                  variable },
        { '?',  NORM,   "get this summary",              help },
        { '#',  NORM,   "send break",                    genbrk },
        { 's',  NORM,   "set variable",                  variable },
        { '?',  NORM,   "get this summary",              help },
        { '#',  NORM,   "send break",                    genbrk },