home *** CD-ROM | disk | FTP | other *** search
/ Frozen Fish 1: Amiga / FrozenFish-Apr94.iso / bbs / alib / d1xx / d199 / csh.lha / Csh / execom.c < prev    next >
C/C++ Source or Header  |  1989-03-31  |  19KB  |  755 lines

  1. /*
  2.  * EXECOM.C
  3.  *
  4.  * Matthew Dillon, 10 August 1986
  5.  *    Finally re-written.
  6.  *
  7.  * Version 2.07M by Steve Drew 10-Sep-87
  8.  *
  9.  * Version 3.02A by Carlo Borreo & Cesare Dieni 20-Dec-88
  10.  *
  11.  */
  12.  
  13. extern char *v_histnum, *v_except;
  14.  
  15. #define F_EXACT 0
  16. #define F_ABBR  1
  17.  
  18. #define ST_COND   0x01
  19. #define ST_NORED  0x02
  20. #define ST_NOEXP  0x04
  21. #define ST_AV     0x08 /* delimit args within a variable */
  22.  
  23. int has_wild = 0;                 /* set if any arg has wild card */
  24.  
  25. struct COMMAND {
  26.     int (*func)();
  27.     short minargs;
  28.     short stat;
  29.     int val;
  30.     char *name;
  31. };
  32.  
  33. extern char *format_insert_string();
  34. extern char *mpush(), *exarg();
  35.  
  36. extern int do_strleft(), do_strright(), do_strmid(), do_strlen();
  37. extern int do_fornum(), do_forline(), do_exec();
  38. extern int do_diskchange(), do_stack(), do_fault(), do_path(), do_pri();
  39. extern int do_rpn(), do_resident(), do_truerun(), do_aset(), do_howmany();
  40. extern int do_open(), do_close(), do_fileslist(), do_htype();
  41. extern int do_run(), do_number(), do_assign(), do_join();
  42. extern int do_quit(), do_set_var(), do_unset_var();
  43. extern int do_echo(), do_source(), do_mv(), do_addbuffers();
  44. extern int do_cd(), do_pwd(), do_rm(), do_mkdir(), do_history();
  45. extern int do_mem(), do_cat(), do_dir(), do_info(), do_inc();
  46. extern int do_foreach(), do_return(), do_if(), do_label(), do_goto();
  47. extern int do_input(), do_ver(), do_sleep(), do_help();
  48. extern int do_strhead(), do_strtail(), do_relabel();
  49. extern int do_copy(), date(), do_protect(), do_ps();
  50. extern int do_forever(), do_abortline(), do_strings(), do_touch();
  51. extern int do_window(), do_search(), do_filenote();
  52. char *push_cpy();
  53.  
  54. static struct COMMAND Command[] = {
  55. do_run,        0, ST_AV,    0,    "\001",   /* may call do_source */
  56. do_set_var,    0, 0, LEVEL_ALIAS,    "alias",  /* uses avline */
  57. do_abortline,    0, 0,        0,    "abortline",
  58. do_addbuffers,    2, 0,        0,    "addbuffers",
  59. do_aset,    1, 0,        0,    "aset",
  60. do_assign,    0, 0,        0,    "assign",
  61. do_cat,        0, 0,        0,    "cat",
  62. do_cd,        0, 0,        0,    "cd",
  63. do_close,    0, 0,        0,    "close",
  64. do_copy,    1, 0,        0,    "copy",
  65. do_copy,    1, 0,        0,    "cp",
  66. date,        0, 0,        0,    "date",
  67. do_rm,        0, 0,        0,    "delete",
  68. do_dir,        0, ST_NOEXP,    0,    "dir",
  69. do_diskchange,    1, 0,        0,    "diskchange",
  70. do_inc,        1, 0,        -1,    "dec",
  71. do_echo,    0, 0,        0,    "echo", /* uses avline */
  72. do_if,        0, ST_COND,    1,    "else",
  73. do_if,        0, ST_COND,    2,    "endif",
  74. do_exec,    1, 0,        0,    "exec",
  75. do_fault,    1, 0,        0,    "fault",
  76. do_filenote,    2, 0,        0,    "filenote",
  77. do_fileslist,    0, 0,        0,    "flist",
  78. do_foreach,    3, ST_NORED,    0,    "foreach",
  79. do_forever,    1, ST_NORED,    0,    "forever",
  80. do_forline,    3, ST_NORED,    0,    "forline",
  81. do_fornum,    4, ST_NORED,    0,    "fornum",
  82. do_goto,    1, 0,        0,    "goto",
  83. do_help,    0, 0,        0,    "help",
  84. do_history,    0, 0,        0,    "history",
  85. do_howmany,    0, 0,        0,    "howmany",
  86. do_htype,    1, 0,        0,    "htype",
  87. do_if,        1, ST_COND|ST_NORED,0,    "if",
  88. do_inc,        1, 0,        1,    "inc",
  89. do_info,    0, 0,        0,    "info",
  90. do_join,    2, 0,        1,    "join",
  91. do_input,    1, 0,        0,    "input",
  92. do_label,    1, ST_COND,    0,    "label",
  93. do_dir,        0, ST_NOEXP,    0,    "ls",
  94. do_mkdir,    0, 0,        0,    "md",
  95. do_mem,        0, 0,        0,    "mem",
  96. do_mkdir,    0, 0,        0,    "mkdir",
  97. do_mv,        2, 0,        0,    "mv",
  98. do_open,    3, 0,        0,    "open",
  99. do_path,    0, 0,        0,    "path",
  100. do_pri,        2, 0,        0,    "pri",
  101. do_protect,    2, 0,        0,    "protect",
  102. do_ps,        0, 0,        0,    "ps",
  103. do_pwd,        0, 0,        0,    "pwd",
  104. do_quit,    0, ST_NORED,    0,    "quit",
  105. do_truerun,    1, ST_NORED,    1,    "rback",
  106. do_mv,        2, 0,        0,    "rename",
  107. do_relabel,    2, 0,        0,    "relabel",
  108. do_resident,    0, 0,        0,    "resident",
  109. do_return,    0, 0,        0,    "return",
  110. do_rm,        0, 0,        0,    "rm",
  111. do_rpn,        0, ST_NOEXP|ST_NORED,0,    "rpn",
  112. do_truerun,    1, ST_NORED,    0,    "run",
  113. do_search,    2, 0,        0,    "search",
  114. do_set_var,    0, ST_AV, LEVEL_SET,    "set",
  115. do_sleep,    0, 0,        0,    "sleep",
  116. do_source,    0, ST_NORED|ST_AV, 0,    "source", /* uses avline */
  117. do_stack,    0, 0,        0,    "stack",
  118. do_strhead,    3, 0,        0,    "strhead",
  119. do_strings,    1, 0,        0,    "strings",
  120. do_strleft,    3, 0,        0,    "strleft",
  121. do_strlen,    2, 0,        0,    "strlen",
  122. do_strmid,    3, 0,        0,    "strmid",
  123. do_strright,    3, 0,        0,    "strright",
  124. do_strtail,    3, 0,        0,    "strtail",
  125. do_touch,    0, 0,        0,    "touch",
  126. do_cat,        0, 0,        0,    "type",
  127. do_unset_var,    0, 0, LEVEL_ALIAS,    "unalias",
  128. do_unset_var,    0, 0, LEVEL_SET  ,    "unset",
  129. do_ver,        0, 0,        0,    "version",
  130. do_window,    0, ST_NOEXP,    0,    "window",
  131. '\0',        0, 0,        0,    NULL
  132. };
  133.  
  134. static unsigned char elast;        /* last end delimeter */
  135. static char Cin_ispipe, Cout_ispipe;
  136.  
  137. exec_command(base)
  138. char *base;
  139. {
  140. register char *scr;
  141. char buf[32];
  142.  
  143. if (!H_stack) {
  144.     add_history(base);
  145.     sprintf(buf, "%d", H_tail_base + H_len);
  146.     set_var(LEVEL_SET, v_histnum, buf);
  147.     }
  148. scr = malloc((strlen(base) << 2) + 2);
  149. preformat(base, scr);
  150. return (fcomm(scr, 1) ? -1 : 1);
  151. }
  152.  
  153. isalphanum(c)
  154. register char c;
  155. {
  156. return (
  157.     (c >= '0' && c <= '9') ||
  158.     (c >= 'a' && c <= 'z') ||
  159.     (c >= 'A' && c <= 'Z') ||
  160.     (c == '_')
  161.     );
  162. }
  163.  
  164. preformat(s, d)
  165. register char *s, *d;
  166. {
  167. register int si, di, qm;
  168.  
  169. si = di = qm = 0;
  170. while (s[si] == ' ' || s[si] == 9) ++si;
  171. while (s[si]) {
  172.     if (qm && s[si] != '\"' && s[si] != '\\') {
  173.         d[di++] = s[si++] | 0x80;
  174.         continue;
  175.         }
  176.     switch (s[si]) {
  177.         case ' ':
  178.         case 9:
  179.             d[di++] = ' ';
  180.             while (s[si] == ' ' || s[si] == 9) ++si;
  181.             if (s[si] == 0 || s[si] == '|' || s[si] == ';') --di;
  182.             break;
  183.         case '*':
  184.         case '?':
  185.             d[di++] = 0x80;
  186.         case '!':
  187.             d[di++] = s[si++];
  188.             break;
  189.         case '#':
  190.             d[di++] = '\0';
  191.             while (s[si]) ++si;
  192.             break;
  193.         case ';':
  194.         case '|':
  195.             d[di++] = s[si++];
  196.             while (s[si] == ' ' || s[si] == 9) ++si;
  197.             break;
  198.         case '\\':
  199.             d[di++] = s[++si] | 0x80;
  200.             if (s[si]) ++si;
  201.             break;
  202.         case '\"':
  203.             qm = 1 - qm;
  204.             ++si;
  205.             break;
  206.         case '^':
  207.             d[di++] = s[++si] & 0x1F;
  208.             if (s[si]) ++si;
  209.             break;
  210.         case '$': /* search end of var name and place false space */
  211.             d[di++] = 0x80;
  212.             d[di++] = s[si++];
  213.             while (isalphanum(s[si])) d[di++] = s[si++];
  214.             d[di++] = 0x80;
  215.             break;
  216.         default:
  217.             d[di++] = s[si++];
  218.             break;
  219.         }
  220.     }
  221. d[di++]=0;
  222. d[di]=0;
  223. if (debug) fprintf (stderr,"PREFORMAT: %d :%s:\n", strlen(d), d);
  224. }
  225.  
  226. extern BPTR extOpen();
  227.  
  228. /*
  229.  * process formatted string.  ' ' is the delimeter.
  230.  *
  231.  *    0: check '\0': no more, stop, done.
  232.  *    1: check $.     if so, extract, format, insert
  233.  *    2: check alias. if so, extract, format, insert. goto 1
  234.  *    3: check history or substitution, extract, format, insert. goto 1
  235.  *
  236.  *    4: assume first element now internal or disk based command.
  237.  *
  238.  *    5: extract each ' ' or 0x80 delimited argument and process, placing
  239.  *       in av[] list (except 0x80 args appended).  check in order:
  240.  *
  241.  *             '$'         insert string straight
  242.  *             '>'         setup stdout
  243.  *             '>>'        setup stdout flag for append
  244.  *             '<'         setup stdin
  245.  *             '*' or '?'  do directory search and insert as separate args.
  246.  *
  247.  *             ';' 0 '|'   end of command.  if '|' setup stdout
  248.  *                          -execute command, fix stdin and out (|) sets
  249.  *                           up stdin for next guy.
  250.  */
  251.  
  252.  
  253. fcomm(str, freeok)
  254. register char *str;
  255. {
  256.    static int alias_count;
  257.    int p_alias_count = 0;
  258.    char *istr;
  259.    char *nextstr;
  260.    char *command;
  261.    char *pend_alias = NULL;
  262.    char err = 0;
  263.    has_wild = 0;
  264.  
  265.    ++alias_count;
  266.  
  267.    mpush_base();
  268.    if (*str == 0)
  269.       goto done1;
  270. step1:
  271.    if (alias_count == MAXALIAS || ++p_alias_count == MAXALIAS) {
  272.       fprintf(stderr,"Alias Loop\n");
  273.       err = 20;
  274.       goto done1;
  275.    }
  276. /*
  277.    if (str[1] == '$') {
  278.       if (istr = get_var (LEVEL_SET, str + 2))
  279.          str = format_insert_string(str, istr, &freeok);
  280.    }
  281. */
  282.    istr = NULL;
  283.    if (*(unsigned char *)str < 0x80)
  284.       istr = get_var (LEVEL_ALIAS, str);  /* only if not \command */
  285.    *str &= 0x7F;                          /* remove \ teltail     */
  286.    if (istr) {
  287.       if (*istr == '%') {
  288.          pend_alias = istr;
  289.       } else {
  290.          str = format_insert_string(str, istr, &freeok);
  291.          goto step1;
  292.       }
  293.    }
  294.    if (*str == '!') {
  295.       char *p, c;                     /* fix to allow !cmd1;!cmd2 */
  296.       for(p = str; *p && *p != ';' ; ++p);
  297.       c = *p;
  298.       *p = '\0';
  299.       istr = get_history(str);
  300.       *p = c;
  301.       replace_head(istr);
  302.       str = format_insert_string(str, istr, &freeok);
  303.       goto step1;
  304.    }
  305.    nextstr = str;
  306.    command = exarg(&nextstr);
  307.    if (*command == 0)
  308.       goto done0;
  309.    if (pend_alias == 0) {
  310.       if (cmd_stat(command) & ST_COND)
  311.          goto skipgood;
  312.    }
  313.    if (disable || forward_goto) {
  314.       while (elast && elast != ';' && elast != '|')
  315.          exarg(&nextstr);
  316.       goto done0;
  317.    }
  318. skipgood:
  319.    {
  320.       register char *arg, *ptr, *scr;
  321.       short redir;
  322.       short doexpand;
  323.       short cont;
  324.       short inc;
  325.  
  326.       ac = 1;
  327.       av[0] = command;
  328. step5:                                          /* ac = nextac */
  329.       if (!elast || elast == ';' || elast == '|')
  330.          goto stepdone;
  331.  
  332.       av[ac] = '\0';
  333.       cont = 1;
  334.       doexpand = redir = inc = 0;
  335.  
  336.       while (cont && elast) {
  337.          int cstat = cmd_stat(command);
  338.  
  339.          ptr = exarg(&nextstr);
  340.          inc = 1;
  341.          arg = "";
  342.          cont = (elast == 0x80);
  343.          switch (*ptr) {
  344.          case '<':
  345.             redir = -2;
  346.          case '>':
  347.             if (cstat & (ST_NORED | ST_COND)) {
  348.                                                         /* don't extract   */
  349.                 redir = 0;                              /* <> stuff if its */
  350.                 arg = ptr;                              /* external cmd.   */
  351.                 break;
  352.             }
  353.             ++redir;
  354.             arg = ptr + 1;
  355.             if (*arg == '>') {
  356.                redir = 2;        /* append >> */
  357.                ++arg;
  358.             }
  359.             cont = 1;
  360.             break;
  361.          case '$':
  362.             /* restore args if from set command or pend_alias */
  363.             if ((arg = get_var(LEVEL_SET, ptr + 1)) != NULL) {
  364.                if (cstat & ST_COND) {
  365.                   char *tp;
  366.                   tp = push_cpy(arg);
  367.                   arg = tp;
  368.                }
  369.                else {
  370.                   char *pe, sv, *index();
  371.                   while (pe = index(arg,0xA0)) {
  372.                      sv = *pe;
  373.                      *pe = '\0';
  374.                      av[ac++] = push_cpy(arg);
  375.                      *pe = sv;
  376.                      av[ac] = '\0';
  377.                      arg = pe+1;
  378.                   }
  379.                }
  380.             }
  381.             else
  382.                arg = ptr;
  383.             break;
  384.          case '*':
  385.          case '?':
  386.             if ((cstat & ST_NOEXP) == 0)
  387.                doexpand = 1;
  388.             arg = ptr;
  389.             break;
  390.          default:
  391.             arg = ptr;
  392.             break;
  393.          }
  394.  
  395.          /* Append arg to av[ac] */
  396.  
  397.          for (scr = arg; *scr; ++scr)
  398.             *scr &= 0x7F;
  399.          if (av[ac]) {
  400.             register char *old = av[ac];
  401.             av[ac] = mpush(strlen(arg)+strlen(av[ac]));
  402.             strcpy(av[ac], old);
  403.             strcat(av[ac], arg);
  404.          } else {
  405.             av[ac] = push_cpy(arg);
  406.          }
  407.          if (elast != 0x80)
  408.             break;
  409.       }
  410.  
  411.       /* process expansion */
  412.  
  413.       if (doexpand) {
  414.          char **eav, **ebase;
  415.          int eac;
  416.          has_wild = 1;
  417.          eav = ebase = expand(av[ac], &eac);
  418.          inc = 0;
  419.          if (eav) {
  420.             if (ac + eac + 2 > MAXAV) {
  421.                ierror (NULL, 506);
  422.                err = 1;
  423.             } else {
  424.                QuickSort(eav, eac);
  425.                for (; eac; --eac, ++eav)
  426.                   av[ac++] = push_cpy(*eav);
  427.             }
  428.             free_expand (ebase);
  429.          }
  430.       }
  431.  
  432.       /* process redirection  */
  433.  
  434.       if (redir && !err) {
  435.          register char *file = (doexpand) ? av[--ac] : av[ac];
  436.  
  437.          if (redir < 0)
  438.             Cin_name = file;
  439.          else {
  440.             Cout_name = file;
  441.             Cout_append = (redir == 2);
  442.          }
  443.          inc = 0;
  444.       }
  445.  
  446.       /* check elast for space */
  447.  
  448.       if (inc) {
  449.          ++ac;
  450.          if (ac + 2 > MAXAV) {
  451.             ierror (NULL, 506);
  452.             err = 1;                /* error condition */
  453.             elast = 0;              /* don't process any more arguemnts */
  454.          }
  455.       }
  456.       if (elast == ' ')
  457.          goto step5;
  458.    }
  459. stepdone:
  460.    av[ac] = '\0';
  461.  
  462.    /* process pipes via files */
  463.  
  464.    if (elast == '|' && !err) {
  465.       static int which;             /* 0 or 1 in case of multiple pipes */
  466.       which = 1 - which;
  467.       Cout_name = (which) ? Pipe1 : Pipe2;
  468.       Cout_ispipe = 1;
  469.    }
  470.  
  471.  
  472.    if (err)
  473.       goto done0;
  474.  
  475.    {
  476.       register int i;
  477.       char save_elast;
  478.       char *compile_av();
  479.       register char *avline;
  480.       unsigned char delim = ' ';
  481.  
  482.       save_elast = elast;
  483.       if (pend_alias || (cmd_stat(command) & ST_AV))
  484.          delim = 0xA0;
  485.       avline = compile_av(av,((pend_alias) ? 1 : 0), ac , delim);
  486.  
  487.  
  488.       if (pend_alias) {                               /* special % alias */
  489.          register char *ptr, *scr;
  490.          for (ptr = pend_alias; *ptr && *ptr != ' '; ++ptr);
  491.          set_var (LEVEL_SET, pend_alias + 1, avline);
  492.          free (avline);
  493.  
  494.          scr = malloc((strlen(ptr) << 2) + 2);
  495.          preformat (ptr, scr);
  496.          fcomm (scr, 1);
  497.          unset_var (LEVEL_SET, pend_alias + 1);
  498.       } else {                                        /* normal command  */
  499.          register int ccno;
  500.          long  oldcin  = Myprocess->pr_CIS;
  501.          long  oldcout = Myprocess->pr_COS;
  502.          char *Cin_buf;
  503.          struct FileHandle *ci;
  504.          long oldbuf;
  505.  
  506.          fflush(stdout);
  507.          ccno = find_command (command);
  508.          if ((Command[ccno].stat & (ST_NORED | ST_COND)) == 0) {
  509.             if (Cin_name) {
  510.                if ((Cin = (long)extOpen(Cin_name,1005L)) == 0L) {
  511.                   ierror (NULL, 504);
  512.                   err = 1;
  513.                   Cin_name = '\0';
  514.                } else {
  515.                   Myprocess->pr_CIS = _devtab[stdin->_unit].fd = Cin;
  516.                   ci = (struct FileHandle *)(((long)Cin)<<2);
  517.                   Cin_buf = (char *)AllocMem(202L, MEMF_PUBLIC);
  518.                   oldbuf = ci->fh_Buf;
  519.                   if (ci->fh_Buf == 0) /* fexec expects a CIS buffer */
  520.                      ci->fh_Buf = (long)Cin_buf>>2;
  521.                }
  522.             }
  523.             if (Cout_name) {
  524.                if (Cout_append && (Cout =(long)extOpen(Cout_name, 1005L)) ) {
  525.                      Seek(Cout, 0L, 1L);
  526.                } else {
  527.                   Cout = (long)extOpen(Cout_name,1006L);
  528.                }
  529.                if (Cout == NULL) {
  530.                   err = 1;
  531.                   ierror (NULL, 504);
  532.                   Cout_name = '\0';
  533.                   Cout_append = 0;
  534.                } else {
  535.                   Myprocess->pr_COS = _devtab[stdout->_unit].fd = Cout;
  536.                }
  537.             }
  538.          }
  539.          if (ac < Command[ccno].minargs + 1) {
  540.             ierror (NULL, 500);
  541.             err = -1;
  542.          } else if (!err) {
  543.             i = (*Command[ccno].func)(avline, Command[ccno].val);
  544.             if (i < 0)
  545.                i = 20;
  546.             err = i;
  547.          }
  548.          free (avline);
  549.          if (E_stack == 0 && Lastresult != err) {
  550.             Lastresult = err;
  551.             seterr();
  552.          }
  553.          if ((Command[ccno].stat & (ST_NORED | ST_COND)) == 0) {
  554.             if (Cin_name) {
  555.                fflush(stdin);
  556.                clearerr(stdin);
  557.                ci->fh_Buf = oldbuf;
  558.                extClose(Cin);
  559.                FreeMem(Cin_buf, 202L);
  560.             }
  561.             if (Cout_name) {
  562.                fflush(stdout);
  563.                clearerr(stdout);
  564.                stdout->_flags &= ~_DIRTY;    /* because of nil: device */
  565.                extClose(Cout);
  566.                Cout_append = 0;
  567.             }
  568.          }
  569.          Myprocess->pr_CIS =  _devtab[stdin->_unit].fd  = oldcin;
  570.          Myprocess->pr_COS =  _devtab[stdout->_unit].fd = oldcout;
  571.       }
  572.  
  573.       if (Cin_ispipe && Cin_name)
  574.          DeleteFile(Cin_name);
  575.       if (Cout_ispipe) {
  576.          Cin_name = Cout_name;         /* ok to assign.. static name */
  577.          Cin_ispipe = 1;
  578.       } else {
  579.          Cin_name = '\0';
  580.       }
  581.       Cout_name = '\0';
  582.       Cout_ispipe = 0;
  583.       elast = save_elast;
  584.    }
  585.    mpop_tobase();                      /* free arguments   */
  586.    mpush_base();                       /* push dummy base  */
  587.  
  588. done0:
  589.    {
  590.       char *str;
  591.       if (err && E_stack == 0) {
  592.          str = get_var(LEVEL_SET, v_except);
  593.          if (err >= ((str)?atoi(str):1)) {
  594.             if (str) {
  595.                ++H_stack;
  596.                ++E_stack;
  597.                exec_command(str);
  598.                --E_stack;
  599.                --H_stack;
  600.             } else {
  601.                Exec_abortline = 1;
  602.             }
  603.          }
  604.       }
  605.       if (elast != 0 && Exec_abortline == 0)
  606.          err = fcomm(nextstr, 0);
  607.       Exec_abortline = 0;
  608.       if (Cin_name)
  609.          DeleteFile(Cin_name);
  610.       Cin_name = NULL;
  611.       Cin_ispipe = 0;
  612.    }
  613. done1:
  614.    mpop_tobase();
  615.    if (freeok)
  616.       free(str);
  617.    --alias_count;
  618.    return ((int)err);                  /* TRUE = error occured    */
  619. }
  620.  
  621.  
  622. char *
  623. exarg(ptr)
  624. unsigned char **ptr;
  625. {
  626.    register unsigned char *end;
  627.    register unsigned char *start;
  628.  
  629.    start = end = *ptr;
  630.    while (*end && *end != 0x80 && *end != ';' && *end != '|' && *end != ' ')
  631.       ++end;
  632.    elast = *end;
  633.    *end = '\0';
  634.    *ptr = end + 1;
  635.    return ((char *)start);
  636. }
  637.  
  638. static char **Mlist;
  639.  
  640. mpush_base()
  641. {
  642.    char *str;
  643.  
  644.    str = malloc(5);
  645.    *(char ***)str = Mlist;
  646.    str[4] = 0;
  647.    Mlist = (char **)str;
  648. }
  649.  
  650. char *
  651. mpush(bytes)
  652. {
  653.    char *str;
  654.  
  655.    str = malloc(6 + bytes + 2);   /* may need extra 2 bytes in do_run() */
  656.    *(char ***)str = Mlist;
  657.    str[4] = 1;
  658.    Mlist = (char **)str;
  659.    return (str + 5);
  660. }
  661.  
  662. mpop_tobase()
  663. {
  664.    register char *next;
  665.    while (Mlist) {
  666.       next = *Mlist;
  667.       if (((char *)Mlist)[4] == 0) {
  668.          free (Mlist);
  669.          Mlist = (char **)next;
  670.          break;
  671.       }
  672.       free (Mlist);
  673.       Mlist = (char **)next;
  674.    }
  675. }
  676.  
  677.  
  678. /*
  679.  * Insert 'from' string in front of 'str' while deleting the
  680.  * first entry in 'str'.  if freeok is set, then 'str' will be
  681.  * free'd
  682.  */
  683.  
  684.  
  685.  
  686. char *
  687. format_insert_string(str, from, freeok)
  688. char *str;
  689. char *from;
  690. int *freeok;
  691. {
  692.    register char *new1, *new2;
  693.    register unsigned char *strskip;
  694.    int len;
  695.  
  696.    for (strskip = (unsigned char *)str;
  697.                    *strskip && *strskip != ' ' 
  698.                    && *strskip != ';' && *strskip != '|'
  699.                    && *strskip != 0x80; ++strskip);
  700.    len = strlen(from);
  701.    new1 = malloc((len << 2) + 2);
  702.    preformat(from, new1);
  703.    len = strlen(new1) + strlen(strskip);
  704.    new2 = malloc(len+2);
  705.    strcpy(new2, new1);
  706.    strcat(new2, strskip);
  707.    new2[len+1] = 0;
  708.    free (new1);
  709.    if (*freeok)
  710.       free (str);
  711.    *freeok = 1;
  712.    return (new2);
  713. }
  714.  
  715. cmd_stat(str)
  716. char *str;
  717. {
  718.    return(Command[find_command(str)].stat);
  719. }
  720.  
  721. find_command(str)
  722. char *str;
  723. {
  724.    register unsigned int i;
  725.    int len = strlen(str);
  726.  
  727.    if (*str >= '0'  &&  *str <= '9')
  728.       return (1);
  729.    for (i = 0; Command[i].func; ++i) {
  730.       if (strncmp (str, Command[i].name, len) == 0)
  731.          return (i);
  732.    }
  733.    return (0);
  734. }
  735.  
  736. do_help()
  737. {
  738.    register struct COMMAND *com;
  739.    int i= 0;
  740.  
  741.  
  742.    for (com = &Command[2]; com->func; ++com) {
  743.       printf ("%-12s", com->name);
  744.       if (++i  % 6 == 0) printf("\n");
  745.    }
  746.    printf("\n");
  747.    return(0);
  748. }
  749.  
  750. char *push_cpy(s)
  751. char *s;
  752. {
  753. return strcpy(mpush(strlen(s)), s);
  754. }
  755.