Annotation of freem/src/expr.c, revision 1.5

1.1       snw         1: /*
1.5     ! snw         2:  *   $Id$
1.1       snw         3:  *    expression parser
                      4:  *
                      5:  *  
1.4       snw         6:  *   Author: Serena Willis <snw@coherent-logic.com>
1.1       snw         7:  *    Copyright (C) 1998 MUG Deutschland
1.5     ! snw         8:  *    Copyright (C) 2020, 2023, 2025 Coherent Logic Development LLC
1.1       snw         9:  *
                     10:  *
                     11:  *   This file is part of FreeM.
                     12:  *
                     13:  *   FreeM is free software: you can redistribute it and/or modify
                     14:  *   it under the terms of the GNU Affero Public License as published by
                     15:  *   the Free Software Foundation, either version 3 of the License, or
                     16:  *   (at your option) any later version.
                     17:  *
                     18:  *   FreeM is distributed in the hope that it will be useful,
                     19:  *   but WITHOUT ANY WARRANTY; without even the implied warranty of
                     20:  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
                     21:  *   GNU Affero Public License for more details.
                     22:  *
                     23:  *   You should have received a copy of the GNU Affero Public License
                     24:  *   along with FreeM.  If not, see <https://www.gnu.org/licenses/>.
                     25:  *
1.5     ! snw        26:  *   $Log$
        !            27:  *
        !            28:  * SPDX-FileCopyrightText:  (C) 2025 Coherent Logic Development LLC
        !            29:  * SPDX-License-Identifier: AGPL-3.0-or-later 
1.1       snw        30:  **/
                     31: 
                     32: #if !defined(__osf__)
                     33: #include <sys/types.h>
                     34: #endif
                     35: #if !defined(__OpenBSD__) && !defined(__FreeBSD__)
                     36: # include <sys/timeb.h>
                     37: #endif
                     38: #include <stdlib.h>
                     39: #include <string.h>
                     40: #include <ctype.h>
                     41: 
                     42: /* mumps expression evaluator */
                     43: 
                     44: #include "mpsdef.h"
                     45: #include "transact.h"
                     46: #include "merr.h"
                     47: #include "mtok.h"
                     48: #include "version.h"
                     49: #if defined(HAVE_STDINT_H)
                     50: # include <stdint.h>
                     51: #endif
                     52: #if !defined(__osf__) && !defined(_AIX)
                     53: # define _XOPEN_SOURCE
                     54: #endif
                     55: 
                     56: #if defined(USE_SYS_TIME_H) && !defined(MSDOS) && !defined(__osf__)
                     57: # include <sys/time.h>
                     58: #else
                     59: # include <time.h> 
                     60: #endif
                     61: 
                     62: #if defined(MSDOS) || defined(__linux__)
                     63: # include <time.h>
                     64:   char *strptime(const char *restrict s, const char *restrict format, struct tm *restrict tm);
                     65: #endif
                     66: 
                     67: #include "mref.h"
                     68: #include "journal.h"
                     69: #include "datatypes.h"
                     70: #include "objects.h"
                     71: 
                     72: #define OPERAND       1
                     73: #define ARRAY         2
                     74: #define FNUMBER       3
                     75: #define REVERSE       4
                     76: #define TRANSLATE     5
                     77: #define QLENGTH       6
                     78: #define QSUBSCRIPT    7
                     79: #define TYPE          31
                     80: #define INSTANCEOF    32
                     81: 
                     82: #define ZCRC          8
                     83: #define ZDATA         9
                     84: #define ZLSD         11
                     85: #define ZNEXT        12
                     86: #define ZPREVIOUS    17
                     87: #define ZTRAP        18
                     88: 
                     89: #define SVNsystem    19
                     90: #define SVNtimezone  20
                     91: #define SVNtlevel    22
                     92: #define SVNtrollback 23
                     93: #define SVNecode     24
                     94: #define SVNestack    25
                     95: #define SVNetrap     26
                     96: #define SVNstack     27
                     97: #define SVNpdisplay   28
                     98: #define SVNdialect    29
                     99: #define SVNzut 30
                    100: 
                    101: #define OR                '!'
                    102: #define MODULO            '#'
                    103: #define DIVIDE            '/'
                    104: #define AND               '&'
                    105: #define NOT               '\''
                    106: #define XOR               '~'
                    107: #define MULTIPLY          '*'
                    108: #define POWER             ' '
                    109: #define PLUS              '+'
                    110: #define MINUS             '-'
                    111: #define LESS              '<'
                    112: #define EQUAL             '='
                    113: #define GREATER           '>'
                    114: #define PATTERN           '?'
                    115: #define INDIRECT          '@'
                    116: #define CONTAINS          '['
                    117: #define INTDIVIDE         '\\'
                    118: #define FOLLOWS           ']'
                    119: #define CONCATENATE       '_'
                    120: #define SORTSAFTER        '.'
                    121: #define EQFOLLOWS         ','
                    122: #define EQSORTS           ';'
                    123: #define MAXOP             ':'
                    124: #define MINOP             '%'
                    125: 
                    126: #define GET               'Y'
                    127: #define GETX              ':'
                    128: 
                    129: #if !defined(__OpenBSD__) && !defined(_AIX) && !defined(__osf__) && !defined(MSDOS) && !defined(__vax__)
                    130: long    time ();
                    131: #endif
1.2       snw       132: void cond_round (char *a, int digits);
                    133: void zkey (char *a, long type);
                    134: int levenshtein (char *word1, char *word2);
1.1       snw       135: time_t     horolog_to_unix (char *horo);
                    136: extern int xecline(int typ);
                    137: short      rbuf_slot_from_name(char *);
                    138: 
                    139: 
                    140: short obj_field = FALSE;
                    141: char object_instance[50];
                    142: char object_class[50];
                    143: 
                    144: 
                    145: /*
                    146:  * expr():  expression parser
                    147:  *  extyp:  type of expression; one of:
                    148:  *          STRING
                    149:  *          NAME
                    150:  *          LABEL
                    151:  *          OFFSET
                    152:  *          ARGIND
                    153:  */
                    154: void expr (short extyp)
                    155: {
                    156:     char op_stck[PARDEPTH + 1]; /* operator/operandflag stack */
                    157:     short spx;          /* stack pointer:             */
                    158:     short zexflag;          /* z 'intrinsic' function flag */
                    159:     int atyp, btyp;         /* DM/EUR currency types */
                    160:     char *a;                /* pointer to current (left) argument */
                    161:     char *b;                /* pointer to right hand argument     */
                    162:     char tmp[256];
                    163:     int refsx;          /* zref/zloc stack_counter  */
                    164:     char *refsav[PARDEPTH];     /* zref/zloc stack          */
                    165:     
                    166: 
                    167:     register int i = 0;
                    168:     register int j = 0;
                    169:     register int f = 0;
                    170:     volatile int ch = 0;
                    171:     
                    172:     short   group;          /* flag to scan grouped patterns */
                    173:     
                    174: #ifdef DEBUG_NEWPTR
                    175:     int loop;
                    176: #endif
                    177: 
                    178:     refsx = 0;
                    179: 
                    180:     if (extyp == NAME) {
                    181: 
                    182:         f = *codptr;
                    183:         varnam[0] = f;
                    184:         
                    185:         if ((f >= 'A' && f <= 'Z') || (f >= 'a' && f <= 'z') || f == '^' || f == '$' || f == '%') {
                    186:             
                    187:             i = 1;
                    188:             
                    189:             while (((ch = *++codptr) >= 'A' && ch <= 'Z') ||
                    190:                    (ch >= 'a' && ch <= 'z') ||
                    191:                    (ch >= '0' && ch <= '9' && (i > 1 || f != '^')) ||
                    192:                    f == '^' &&
                    193:                    (((ch == '%' || ch == '$') && i == 1) ||
                    194:                     (ch == '|') ||
                    195:                     (standard == 0 &&
                    196:                      (ch == '.' ||
                    197:                       (ch == '/' && i == 1) ||
                    198:                       (((ch == '/' && varnam[i - 1] != '/') ||
                    199:                         (ch == '%' && varnam[i - 1] == '/')) &&
                    200:                        (varnam[1] == '.' || varnam[1] == '/'))))) || (f != '^') && (ch == '.')) {
                    201:                 
                    202:                 varnam[i++] = ch;
                    203: 
                    204:                 
                    205:                 
                    206:             }
                    207: 
                    208:             varnam[i] = EOL;            
                    209:             
                    210:             if (ch == '(') {        /* it's an array */
                    211:                 
                    212:                 op_stck[0] = 0;
                    213:                 op_stck[1] = ARRAY;
                    214:                 spx = 1;
                    215:                 a = argptr;
                    216:                 
                    217:                 if ((argstck[1] = a) >= s) {
                    218:                     
                    219:                     char   *bak;
                    220: 
                    221:                     bak = partition;
                    222: 
                    223:                     if (getpmore () == 0) {
                    224:                         merr_raise (STKOV);
                    225:                         return;
                    226:                     }
                    227:                     
                    228:                     a = a - bak + partition;
                    229:                     b = b - bak + partition;
                    230: 
                    231:                 }
                    232: 
                    233:                 a += stcpy (a, varnam) + 1;
                    234:                 
                    235:                 arg = 1;
                    236:                 codptr++;
                    237:                 
                    238:                 goto nextchr;
                    239:             }
                    240: 
                    241:             codptr--;
                    242: 
                    243:             if (i == 1 && f == '^') {
                    244:                 merr_raise (INVEXPR);
                    245:             }
                    246: 
                    247:             return;
                    248: 
                    249:         }
                    250: 
                    251:         if (f != '@') {
                    252:             merr_raise (INVREF);
                    253:             return;
                    254:         }
                    255:     
                    256:     }                   /* end if (extyp ==NAME) */
                    257: 
                    258:     arg = 0;
                    259:     spx = 0;                /* initialisation */
                    260:     op_stck[0] = 0;
                    261:     a = argptr;
                    262: 
                    263:     nextchr:
                    264:     ch = *codptr;
                    265: 
                    266:     if ((ch >= 'A' && ch <= 'Z') || (ch >= 'a' && ch <= 'z') || ch == '%') {
                    267: 
                    268: 
                    269: scan_name:        
                    270: 
                    271:         varnam[0] = ch;
                    272:         i = 1;
                    273:         
                    274:         if (ch == '^') {        /* global variable name */
                    275: 
                    276:             int vb_ct;
                    277:             int qt_ct;
                    278:             char lastch;
                    279:             char nextch;
                    280:             
                    281:             vb_ct = 0;
                    282:             qt_ct = 0;
                    283:             
                    284:             lastch = ' ';
                    285:             
                    286:             while (((ch = *++codptr) >= 'A' && ch <= 'Z') ||
                    287:                    (ch >= 'a' && ch <= 'z') ||
                    288:                    (ch >= '0' && ch <= '9' && i > 1) ||
                    289:                    (ch == '|') || (ch == '%') || (ch == '\"') ||
                    290:                    (((ch == '%' || ch == '$') && i == 1) ||
                    291:                     (standard == 0 &&
                    292:                      (ch == '.' ||
                    293:                       (ch == '/' && i == 1) ||
                    294:                       (((ch == '/' && varnam[i - 1] != '/') ||
                    295:                         (ch == '%' && varnam[i - 1] == '/')) &&
                    296:                        (varnam[1] == '.' || varnam[1] == '/')))))) {
                    297: 
                    298:                 nextch = *(codptr + 1);
                    299:                 
                    300:                 if (ch == '|') vb_ct++;
                    301: 
                    302:                 if (ch == '\"') {
                    303:                     qt_ct++;
                    304:                     
                    305:                     if ((lastch != '|') && (nextch != '|')) {
                    306:                         merr_raise (INVEXPR);
                    307:                         return;
                    308:                     }
                    309:                     
                    310:                 }
                    311: 
                    312:                 if ((ch == '|') && ((nextch != '\"') && (lastch != '\"'))) {
                    313: 
                    314:                     if ((qt_ct == 1) && (vb_ct == 2)) {
                    315:                         merr_raise (QUOTER);
                    316:                         return;
                    317:                     }
                    318:                     else if ((vb_ct == 2) && (qt_ct == 1)){
                    319:                         merr_raise (INVEXPR);
                    320:                         return;
                    321:                     }
                    322:                     
                    323:                 }
                    324:                 
                    325:                 if (vb_ct > 2) {
                    326:                     merr_raise (INVEXPR);
                    327:                     return;
                    328:                 }
                    329:                 
                    330:                 varnam[i++] = ch;
                    331: 
                    332:                 lastch = ch;
                    333:             }
                    334: 
                    335:             varnam[i] = EOL;          
                    336:             
                    337:             if (i == 1 && ch != '(') {
                    338:                 merr_raise (INVEXPR);
                    339:                 return;
                    340:             }
                    341: 
                    342:         } 
                    343:         else {          /* local variable name */
                    344: 
                    345:             while (isalnum (ch = *++codptr)) {
                    346:                 varnam[i++] = ch;
                    347:             }
                    348:         
                    349:             varnam[i] = EOL;
                    350: 
                    351:             
                    352:             if (*codptr == '.') {
                    353:                 if (*(codptr + 1) == '$') {
                    354:                     codptr++;
                    355: 
                    356:                     obj_field = TRUE;
                    357:                     stcpy (object_instance, varnam);
                    358:                     stcnv_m2c (object_instance);
                    359:                     obj_get_attribute (object_instance, "CLASS", object_class);
                    360: 
                    361:                     stcnv_m2c (object_instance);
                    362:                     stcnv_c2m (object_class);
                    363:                     
                    364:                     expr (STRING);
                    365:                     return;
                    366:                 }
                    367:                 else {
                    368:                     merr_raise (INVEXPR);
                    369:                     return;
                    370:                 }
                    371:             }
                    372:             
                    373:         }
                    374:         
                    375:         if (ch == '(') {        /* it's an array */
                    376:             
                    377:             if (extyp == LABEL) {
                    378:                 codptr--;
                    379:                 return;
                    380:             }
                    381: 
                    382:             if (++spx >= PARDEPTH) {
                    383:                 merr_raise (STKOV);
                    384:                 return;
                    385:             }
                    386: 
                    387:             op_stck[spx] = ARRAY;
                    388:             
                    389:             if ((argstck[++arg] = a) >= s) {
                    390:                 
                    391:                 char   *bak;
                    392:                 bak = partition;
                    393: 
                    394:                 if (getpmore () == 0) {
                    395:                     merr_raise (STKOV);
                    396:                     return;
                    397:                 }
                    398:                 
                    399:                 a = a - bak + partition;
                    400:                 b = b - bak + partition;
                    401: 
                    402:             }
                    403: 
                    404:             a += stcpy (a, varnam) + 1;
                    405:             codptr++;
                    406:             
                    407:             goto nextchr;
                    408: 
                    409:         }
                    410: 
                    411:         if (spx == 0) {
                    412:             
                    413:             if (extyp != STRING && extyp != ARGIND && extyp != OFFSET) {
                    414:                 codptr--;
                    415:                 return;
                    416:             }
                    417: 
                    418:             if (varnam[0] != '^') {
                    419:                 symtab (get_sym, varnam, a);
                    420:             }
                    421:             else if (varnam[1] != '$') {
                    422:                 global (get_sym, varnam, a);
                    423:             }
                    424:             else {
                    425:                 ssvn (get_sym, varnam, a);
                    426:             }
                    427:             
                    428:             if (merr () != OK) {
                    429: 
                    430:                 stcpy (varerr, varnam);
                    431:                 
                    432:                 if (merr () == UNDEF || merr () == M6 || merr () == M7) {
                    433:                     arg = 1;
                    434:                     codptr--;
                    435:                     
                    436:                     goto undefglvn;
                    437:                 }
                    438: 
                    439:             }
                    440: 
                    441:             if (ch == EOL || ch == SP || (extyp == ARGIND) || ch == ',' || ch == ':' || ch == ')' || ch == '@' || (merr () > OK)) {
                    442:                 return;
                    443:             }
                    444: 
                    445:             arg = 1;
                    446:             argstck[1] = a;
                    447:             f = OPERAND;
                    448:             op_stck[1] = f;
                    449:             spx = 2;
                    450: 
                    451:             goto op10;          /* shortcut: following char is garbage or operator */
                    452: 
                    453:         }
                    454: 
                    455:         codptr--;
                    456:         
                    457:         if ((argstck[++arg] = a) >= s) {
                    458:             
                    459:             char   *bak;
                    460:             bak = partition;
                    461: 
                    462:             if (getpmore () == 0) {
                    463:                 merr_raise (STKOV);
                    464:                 return;
                    465:             }
                    466: 
                    467:             a = a - bak + partition;
                    468:             b = b - bak + partition;
                    469: 
                    470:         }
                    471: 
                    472:         /* evaluate glvn or $_(glvn) */
                    473: 
                    474: var1:
                    475:         
                    476:         if (op_stck[spx] == '$') {
                    477: 
                    478:             f = op_stck[spx - 1];
                    479: 
                    480:             
                    481:             switch (f) {
                    482: 
                    483: 
                    484:                 case 'd':           /* $DATA */
                    485:                     
                    486:                     ch = dat;
                    487: 
                    488: glv_fcn:
                    489: 
                    490:                     if (varnam[0] != '^') {
                    491:                         symtab (ch, varnam, a);
                    492:                     }
                    493:                     else if (varnam[1] != '$'){
                    494:                         global  (ch, varnam, a);
                    495:                     }
                    496:                     else {
                    497:                         ssvn (ch, varnam, a);
                    498:                     }
                    499: 
                    500: d_o_n:
                    501: 
                    502:                     if (*++codptr != ')') merr_raise (INVEXPR);
                    503: 
                    504:                     if (merr () > OK) {
                    505:                         stcpy (varerr, varnam);
                    506:                         return;
                    507:                     }
                    508: 
                    509:                     spx -= 2;
                    510:                     
                    511:                     goto nxt_operator;
                    512: 
                    513: 
                    514:                 case 'o':           /* $ORDER */
                    515: 
                    516:                     if (rtn_dialect () == D_M77) {
                    517:                         merr_raise (NOSTAND);
                    518:                         return;
                    519:                     }
                    520:                     
                    521:                     ch = fra_order;
                    522:                     ordercnt = 1L;
                    523:                     
                    524:                     if (*(codptr + 1) != ',') {
                    525:                         ordercounter = 0;
                    526:                         goto glv_fcn;
                    527:                     }
                    528: 
                    529:                     if (++spx > PARDEPTH) {
                    530:                         merr_raise (STKOV);
                    531:                         return;
                    532:                     }
                    533: 
                    534:                     stcpy (a, varnam);
                    535:                     
                    536:                     op_stck[spx] = OPERAND;
                    537:                     codptr++;
                    538:                     
                    539:                     goto nextchr;
                    540: 
                    541: 
                    542:                 case 'n':           /* $NEXT */
                    543: 
                    544:                     ordercnt = 1L;
                    545:                     ordercounter = 0;
                    546:                     
                    547:                     if (varnam[0] != '^') {
                    548:                         symtab (fra_order, varnam, a);
                    549:                     }
                    550:                     else if (varnam[1] != '$') {
                    551:                         global  (fra_order, varnam, a);
                    552:                     }
                    553:                     else {
                    554:                         ssvn (fra_order, varnam, a);
                    555:                     }
                    556: 
                    557:                     if (a[0] == EOL) {
                    558:                         a[0] = '-';
                    559:                         a[1] = '1';
                    560:                         a[2] = EOL;
                    561:                     }
                    562: 
                    563:                     goto d_o_n;
                    564: 
                    565: 
                    566:                 case 'q':           /* $QUERY */
                    567:                 case 'O':           /* $ZORDER */
                    568:                 
                    569:                     ch = fra_query;
                    570:                     ordercnt = 1L;
                    571:                     
                    572:                     if (*(codptr + 1) != ',') goto glv_fcn;
                    573: 
                    574:                     if (++spx > PARDEPTH) {
                    575:                         merr_raise (STKOV);
                    576:                         return;
                    577:                     }
                    578: 
                    579:                     stcpy (a, varnam);
                    580:                     
                    581:                     op_stck[spx] = OPERAND;
                    582:                     codptr++;
                    583:                     
                    584:                     goto nextchr;
                    585: 
                    586: 
                    587:                 case ZNEXT:     /* $ZNEXT */
                    588: 
                    589:                     ordercnt = 1L;
                    590:                     
                    591:                     if (varnam[0] != '^') {
                    592:                         symtab (fra_query, varnam, a);
                    593:                     }
                    594:                     else if (varnam[1] != '$') {
                    595:                         global  (fra_query, varnam, a);
                    596:                     }
                    597:                     else {
                    598:                         ssvn (fra_query, varnam, a);
                    599:                     }
                    600:                     
                    601:                     if (a[0] == EOL) {
                    602:                         a[0] = '-';
                    603:                         a[1] = '1';
                    604:                         a[2] = EOL;
                    605:                     }
                    606: 
                    607:                     goto d_o_n;
                    608: 
                    609: 
                    610:                 case 'N':           /* $NAME */
                    611: 
                    612:                     /* resolve naked reference */
                    613:                     if (varnam[0] == '^' && varnam[1] == DELIM) {
                    614:                         
                    615:                         stcpy (a, zref);
                    616:                         ch = stlen (a);
                    617:                         
                    618:                         while (a[ch--] != DELIM) {
                    619:                         
                    620:                             if (ch <= 0) {
                    621:                                 merr_raise (NAKED);
                    622:                                 return;
                    623:                             }
                    624:                         
                    625:                         }
                    626: 
                    627:                         stcpy (&a[++ch], &varnam[1]);
                    628:                         stcpy (varnam, a);
                    629: 
                    630:                     }
                    631: 
                    632:                     if (*(codptr + 1) != ',') {
                    633:                         zname (a, varnam);
                    634:                         goto d_o_n;
                    635:                     }
                    636: 
                    637:                     if (++spx > PARDEPTH) {
                    638:                         merr_raise (STKOV);
                    639:                         return;
                    640:                     }
                    641: 
                    642:                     stcpy (a, varnam);
                    643:                     
                    644:                     op_stck[spx] = OPERAND;
                    645:                     codptr++;
                    646:                     
                    647:                     goto nextchr;
                    648: 
                    649: 
                    650:                 case ZPREVIOUS:     /* $ZPREVIOUS */
                    651: 
                    652:                     ordercnt = (-1L);
                    653:                     ordercounter = 0;
                    654:                     ch = fra_order;
                    655:                     
                    656:                     goto glv_fcn;
                    657: 
                    658: 
                    659:                 case ZDATA:     /* $ZDATA */
                    660: 
                    661:                     ch = zdata;
                    662:                     goto glv_fcn;
                    663: 
                    664: 
                    665:                 case 'g':           /* $GET */
                    666:                     
                    667:                     if (varnam[0] != '^') {
                    668:                         symtab (get_sym, varnam, a);
                    669:                     }
                    670:                     else if (varnam[1] != '$') {
                    671:                         global (get_sym, varnam, a);
                    672:                     }
                    673:                     else {
                    674:                         ssvn (get_sym, varnam, a);
                    675:                     }
                    676: 
                    677:                     if (merr () == M7 || merr () == M6) merr_raise (UNDEF);
                    678: 
                    679:                     if (merr () > OK) {
                    680: 
                    681:                         stcpy (varerr, varnam);
                    682:                     
                    683:                         if (merr () != UNDEF) return;
                    684:                     }
                    685:                     
                    686:                     if (merr () == UNDEF) {
                    687: 
                    688:                         //smw 15 nov 2023 merr_raise (ierr < 0 ? OK - CTRLB : OK);
                    689:                         merr_clear ();
                    690:                         
                    691:                         if (*++codptr == ',') {
                    692: 
                    693:                             if (standard) {
                    694:                                 merr_raise (NOSTAND);
                    695:                                 return;
                    696:                             }
                    697: 
                    698:                             op_stck[spx - 1] = GET;     /* dummy function for $GET */
                    699:                             arg--;
                    700:                             codptr++;
                    701:                             
                    702:                             goto nextchr;
                    703:                         
                    704:                         } 
                    705:                         else {
                    706: 
                    707:                             if (*codptr != ')') {
                    708:                                 merr_raise (INVEXPR);
                    709:                                 return;
                    710:                             }
                    711: 
                    712:                             *a = EOL;
                    713: 
                    714:                         }
                    715: 
                    716:                     } 
                    717:                     else {        /* glvn was defined */
                    718:                         
                    719:                         if (*++codptr == ',') { /* skip second argument */
                    720:                             
                    721:                             i = 0;      /* quote flag */                            
                    722:                             f = 0;      /* bracket counter */
                    723: 
                    724:                             for (;;) {
                    725: 
                    726:                                 ch = *++codptr;
                    727:                                 
                    728:                                 if (ch == EOL) {
                    729:                                     merr_raise (INVEXPR);
                    730:                                     return;
                    731:                                 }
                    732: 
                    733:                                 if (ch == '"') {
                    734:                                     i = !i;
                    735:                                     continue;
                    736:                                 }
                    737: 
                    738:                                 if (i) continue;
                    739:                                 
                    740:                                 if (ch == '(') {
                    741:                                     f++;
                    742:                                     continue;
                    743:                                 }
                    744: 
                    745:                                 if (ch == ')') {
                    746:                                     if (--f < 0) break;
                    747:                                 }
                    748: 
                    749:                             }
                    750: 
                    751:                         } 
                    752:                         else if (*codptr != ')') {
                    753:                             merr_raise (INVEXPR);
                    754:                             return;
                    755:                         }
                    756: 
                    757:                     }
                    758: 
                    759:                     spx -= 2;
                    760:                     goto nxt_operator;
                    761: 
                    762:                 case 'i':           /* $INCREMENT */
                    763:                     
                    764:                     if (varnam[0] != '^') {
                    765:                         symtab (getinc, varnam, a);
                    766:                     }
                    767:                     else {
                    768:                         
                    769:                         int setopsav;
                    770: 
                    771:                         setopsav = setop;
                    772:                         setop = '+';
                    773:                         a[0] = '1';
                    774:                         a[1] = EOL;
                    775:                         
                    776:                         if (varnam[1] != '$') {
                    777:                             global  (set_sym, varnam, a);
                    778:                         }
                    779:                         else {
                    780:                             ssvn (set_sym, varnam, a);
                    781:                         }
                    782: 
                    783:                         setop = setopsav;
                    784: 
                    785:                     }
                    786: 
                    787:                     goto d_o_n;
                    788: 
                    789: 
                    790:                 case OPERAND:       /* three arguments $TEXT */
                    791: 
                    792:                     if (spx >= 6 && op_stck[spx - 5] == 't' && op_stck[spx - 4] == '$' && op_stck[spx - 2] == '$') {
                    793:                         
                    794:                         stcpy (a, &varnam[varnam[0]=='^']); /* third argument */
                    795:                         
                    796:                         if (++spx > PARDEPTH) {
                    797:                             merr_raise (STKOV);
                    798:                             return;
                    799:                         }
                    800: 
                    801:                         op_stck[spx] = OPERAND;
                    802:                         codptr++;
                    803:                         
                    804:                         goto nextchr;
                    805: 
                    806:                     }
                    807: 
                    808:             }               /* end switch */
                    809:         }
                    810:         
                    811:         /* retrieve look-up */
                    812: 
                    813:         if (varnam[0] != '^') {
                    814:             symtab (get_sym, varnam, a);
                    815:         }
                    816:         else if (varnam[1] != '$') {
                    817:             global  (get_sym, varnam, a);
                    818:         }
                    819:         else {
                    820:             ssvn (get_sym, varnam, a);
                    821:         }
                    822: 
                    823: 
                    824: undefglvn:
                    825: 
                    826: 
                    827:         if (merr ()) stcpy (varerr, varnam);
                    828:         
                    829:         if ((merr () == M6) || (merr () == M7) || (merr () == UNDEF)) {
                    830:             
                    831:             stcpy (tmp, codptr + 1);
                    832:             
                    833:             if (varnam[0] == '^') { /* is there a default expression?? */
                    834:                 
                    835:                 if (gvndefault[0] == EOL) return;
                    836:                 
                    837:                 stcpy (&code[1], gvndefault);
                    838: 
                    839:             } 
                    840:             else {
                    841: 
                    842:                 if (lvndefault[0] == EOL) return;
                    843:             
                    844:                 stcpy (&code[1], lvndefault);
                    845:             
                    846:             }
                    847:             
                    848:             /* simulate a $GET function */
                    849:             code[0] = SP;
                    850:             
                    851:             stcat (code, ")\201");
                    852:             stcat (code, tmp);
                    853:             
                    854:             codptr = &code[1];
                    855:             
                    856:             if (((++spx) + 1) > PARDEPTH) {
                    857:                 merr_raise (STKOV);
                    858:                 return;
                    859:             }
                    860: 
                    861:             op_stck[spx] = GETX;    /* dummy function for $GET */
                    862:             op_stck[++spx] = '$';
                    863:             
                    864:             /* stack $ZREFERENCE and $ZLOCAL */
                    865:             if ((refsav[refsx] = calloc (1, 2 * 256)) == NULL) {
                    866:                 merr_raise (STKOV);
                    867:                 return;
                    868:             }               /* could not allocate stuff...     */
                    869:             
                    870:             stcpy (refsav[refsx], zref);
                    871:             stcpy (refsav[refsx++] + 256, zloc);
                    872:             
                    873:             ierr -= M7; //smw TODO HUH??
                    874:             arg--;
                    875:             
                    876:             goto nextchr;
                    877: 
                    878:         }
                    879: 
                    880:         if (merr () > OK) return;
                    881: 
                    882:         if (spx == 0) {
                    883: 
                    884:             if ((ch = *++codptr) == EOL || ch == SP || ch == ',' || ch == ':') return;
                    885: 
                    886:             if (++spx > PARDEPTH) {
                    887:                 merr_raise (STKOV);
                    888:                 return;
                    889:             }
                    890: 
                    891:             op_stck[spx] = OPERAND;
                    892:             
                    893:             goto next10;
                    894: 
                    895:         }
                    896: 
                    897:         f = op_stck[spx];
                    898:         
                    899:         if (f == ARRAY || f == '(') {
                    900:             
                    901:             if (++spx > PARDEPTH) {
                    902:                 merr_raise (STKOV);
                    903:                 return;
                    904:             }
                    905: 
                    906:             op_stck[spx] = OPERAND;
                    907:             codptr++;
                    908:             
                    909:             goto nextchr;
                    910: 
                    911:         }
                    912: 
                    913:         if (f == INDIRECT && (extyp == STRING || extyp == ARGIND || extyp == OFFSET)) {
                    914:             spx--;
                    915:             goto indirect;      /* VARIABLE indirection */
                    916:         }
                    917: 
                    918:         goto nxt_expr;
                    919: 
                    920:     }
                    921: 
                    922:     if (ch >= '0' && ch <= '9') {
                    923: 
                    924:         if (extyp == LABEL) goto scan_name;     /* scan_label */
                    925: 
                    926:         /* scan number */
                    927:         i = 0;              /* point flag */
                    928:         j = 0;              /* exp flag */
                    929:         f = ch;             /* first character */
                    930: 
                    931:         if ((argstck[++arg] = a) >= s) {
                    932:             
                    933:             char   *bak;
                    934:             bak = partition;
                    935:             
                    936:             if (getpmore () == 0) {
                    937:                 merr_raise (STKOV);
                    938:                 return;
                    939:             }
                    940: 
                    941:             a = a - bak + partition;
                    942: 
                    943:         }
                    944: 
                    945:         b = a;
                    946: 
                    947: p_entry:           /* entry point if first character was a point */
                    948:         
                    949:         for (;;) {
                    950: 
                    951:             if (ch < '0') {
                    952: 
                    953:                 if (ch != '.' || i || j) break;
                    954:             
                    955:                 i++;
                    956: 
                    957:             } 
                    958:             else if (ch > '9') {
                    959: 
                    960:                 if (j) break;
                    961:                 if (ch != 'E' && (lowerflag == FALSE || ch != 'e')) break;
                    962:                 
                    963:                 if (ch == 'E') {
                    964:                     if ((*(codptr + 1) == 'U') && (*(codptr + 2) == 'R')) break;
                    965:                     if ((*(codptr + 1) == 'S') && (*(codptr + 2) == 'P')) break;
                    966:                 }
                    967: 
                    968:                 j++;
                    969:                 
                    970:                 do {
                    971: 
                    972:                     *b++ = ch;
                    973:                     ch = *++codptr;
                    974: 
                    975:                 } while (ch == '+' || ch == '-');
                    976: 
                    977:             }
                    978: 
                    979:             *b++ = ch;
                    980:             ch = *++codptr;
                    981: 
                    982:         }
                    983: 
                    984: #ifdef EUR2DEM
                    985: 
                    986:         switch (ch) {
                    987: 
                    988:             case 'E':
                    989:                 
                    990:                 if ((*(codptr + 1) == 'U') && (*(codptr + 2) == 'R')) {
                    991:                     *b++ = ch;
                    992:                     *b++ = *++codptr;
                    993:                     *b++ = *++codptr;
                    994:                     ch = *++codptr;
                    995:                     j = 1;
                    996:                     
                    997:                     break;
                    998:                 }
                    999: 
                   1000:                 if ((*(codptr + 1) == 'S') && (*(codptr + 2) == 'P')) {
                   1001:                     *b++ = ch;
                   1002:                     *b++ = *++codptr;
                   1003:                     *b++ = *++codptr;
                   1004:                     ch = *++codptr;
                   1005:                     j = 1;
                   1006:                 }
                   1007: 
                   1008:                 break;
                   1009: 
                   1010: 
                   1011:             case 'D':
                   1012: 
                   1013:                 if (*(codptr + 1) == 'M') {
                   1014:                     *b++ = ch;
                   1015:                     *b++ = *++codptr;
                   1016:                     ch = *++codptr;
                   1017:                     j = 1;
                   1018: 
                   1019:                     break;
                   1020:                 }
                   1021: 
                   1022:                 if (*(codptr + 1) == 'E' && *(codptr + 2) == 'M') {
                   1023:                     *b++ = ch;
                   1024:                     *b++ = *++codptr;
                   1025:                     *b++ = *++codptr;
                   1026:                     ch = *++codptr;
                   1027:                     j = 1;
                   1028:                 }
                   1029: 
                   1030:                 break;
                   1031:             
                   1032: 
                   1033:             case 'A':
                   1034: 
                   1035:                 if (*(codptr + 1) == 'T' && *(codptr + 2) == 'S') {
                   1036:                     *b++ = ch;
                   1037:                     *b++ = *++codptr;
                   1038:                     *b++ = *++codptr;
                   1039:                     ch = *++codptr;
                   1040:                     j = 1;
                   1041:                 }
                   1042: 
                   1043:                 break;
                   1044:             
                   1045: 
                   1046:             case 'B':
                   1047:                 
                   1048:                 if (*(codptr + 1) == 'F' && *(codptr + 2) == 'R') {
                   1049:                     *b++ = ch;
                   1050:                     *b++ = *++codptr;
                   1051:                     *b++ = *++codptr;
                   1052:                     ch = *++codptr;
                   1053:                     j = 1;
                   1054:                 }
                   1055:                 
                   1056:                 break;
                   1057: 
                   1058: 
                   1059:             case 'F':
                   1060: 
                   1061:                 if (*(codptr + 1) == 'F') {
                   1062:                     *b++ = ch;
                   1063:                     *b++ = *++codptr;
                   1064:                     ch = *++codptr;
                   1065:                     j = 1;
                   1066: 
                   1067:                     break;
                   1068:                 }
                   1069: 
                   1070:                 if (*(codptr + 1) == 'M' && *(codptr + 2) == 'K') {
                   1071:                     *b++ = ch;
                   1072:                     *b++ = *++codptr;
                   1073:                     *b++ = *++codptr;
                   1074:                     ch = *++codptr;
                   1075:                     j = 1;
                   1076:                     
                   1077:                     break;
                   1078:                 }
                   1079: 
                   1080:                 if (*(codptr + 1) == 'R' && *(codptr + 2) == 'F') {
                   1081:                     *b++ = ch;
                   1082:                     *b++ = *++codptr;
                   1083:                     *b++ = *++codptr;
                   1084:                     ch = *++codptr;
                   1085:                     j = 1;
                   1086:                 }
                   1087: 
                   1088:                 break;
                   1089:             
                   1090: 
                   1091:             case 'I':
                   1092: 
                   1093:                 if (*(codptr + 1) == 'E' && *(codptr + 2) == 'P') {
                   1094:                     *b++ = ch;
                   1095:                     *b++ = *++codptr;
                   1096:                     *b++ = *++codptr;
                   1097:                     ch = *++codptr;
                   1098:                     j = 1;
                   1099: 
                   1100:                     break;
                   1101:                 }
                   1102: 
                   1103:                 if (*(codptr + 1) == 'T' && *(codptr + 2) == 'L') {
                   1104:                     *b++ = ch;
                   1105:                     *b++ = *++codptr;
                   1106:                     *b++ = *++codptr;
                   1107:                     ch = *++codptr;
                   1108:                     j = 1;
                   1109:                 }
                   1110: 
                   1111:                 break;
                   1112:             
                   1113: 
                   1114:             case 'N':
                   1115:                 
                   1116:                 if (*(codptr + 1) == 'L' && *(codptr + 2) == 'G') {
                   1117:                     *b++ = ch;
                   1118:                     *b++ = *++codptr;
                   1119:                     *b++ = *++codptr;
                   1120:                     ch = *++codptr;
                   1121:                     j = 1;
                   1122:                 }
                   1123: 
                   1124:                 break;
                   1125:             
                   1126: 
                   1127:             case 'P':
                   1128: 
                   1129:                 if (*(codptr + 1) == 'T' && *(codptr + 2) == 'E') {
                   1130:                     *b++ = ch;
                   1131:                     *b++ = *++codptr;
                   1132:                     *b++ = *++codptr;
                   1133:                     ch = *++codptr;
                   1134:                     j = 1;
                   1135:                 }
                   1136: 
                   1137: 
                   1138:         }
                   1139: 
                   1140: #endif /* EUR2DEM */
                   1141: 
                   1142:         *b = EOL;
                   1143: 
                   1144:         if (j || f == '0' || (i && ((*(b - 1)) < '1'))) {   /* <'1' eqiv. to '.' || '0' */
                   1145:             atyp = numlit (a);
                   1146:             if (atyp) stcat (a, WHR[atyp]);
                   1147:         }
                   1148: 
                   1149:         
                   1150:         if (spx) {
                   1151:             codptr--;
                   1152:             goto exec;
                   1153:         }
                   1154: 
                   1155:         if (ch == EOL || ch == SP || ch == ',' || ch == ':' || (ch == '^' && extyp == OFFSET)) return;
                   1156:         
                   1157:         spx = 1;
                   1158:         op_stck[1] = OPERAND;
                   1159: 
                   1160:     }
                   1161: 
                   1162:     if (ch != '"') goto next10;
                   1163: 
                   1164:     /* scan string */
                   1165:     if ((argstck[++arg] = a) >= s) {
                   1166: 
                   1167:         char *bak;
                   1168: 
                   1169:         bak = partition;
                   1170:         
                   1171:         if (getpmore () == 0) {
                   1172:             merr_raise (STKOV);
                   1173:             return;
                   1174:         }
                   1175: 
                   1176:         a = a - bak + partition;
                   1177:         b = b - bak + partition;
                   1178: 
                   1179:     }
                   1180: 
                   1181:     i = 0;
                   1182: 
                   1183:     for (;;) {
                   1184: 
                   1185:         while ((ch = *++codptr) > '"') {
                   1186:             a[i++] = ch;
                   1187:         }
                   1188:         
                   1189:         /* we make use of the fact that */
                   1190:         /* EOL < "any ASCII character" */
                   1191:         if (ch == '"' && (ch = *++codptr) != '"') {
                   1192: 
                   1193:             if (ch == '_' && *(codptr + 1) == '"') {
                   1194:                 codptr++;
                   1195:                 continue;
                   1196:             }
                   1197:             
                   1198:             a[i] = EOL;
                   1199:             
                   1200:             if (spx) {
                   1201:                 codptr--;
                   1202:                 goto exec;
                   1203:             }
                   1204:             
                   1205:             if (ch == EOL || ch == SP || ch == ',' || ch == ':') return;
                   1206:             
                   1207:             spx = 1;
                   1208:             op_stck[1] = OPERAND;
                   1209:             
                   1210:             goto next10;
                   1211: 
                   1212:         }
                   1213: 
                   1214:         if (ch == EOL) {
                   1215:             merr_raise (QUOTER);
                   1216:             return;
                   1217:         }
                   1218: 
                   1219:         a[i++] = ch;
                   1220: 
                   1221:     }
                   1222: 
                   1223: next05:
                   1224:     
                   1225:     ch = *(++codptr);
                   1226: 
                   1227: next10:
                   1228: 
                   1229:     switch (ch) {
                   1230: 
                   1231:         
                   1232:         case EOL:
                   1233:         case SP:
                   1234: 
                   1235:             if (op_stck[1] == OPERAND && spx == 1) return;
                   1236:         
                   1237:             merr_raise (INVEXPR);
                   1238:             return;
                   1239: 
                   1240: 
                   1241:         case ',':
                   1242: 
                   1243:             if (spx == 0) {
                   1244:                 merr_raise (ARGER);
                   1245:                 return;
                   1246:             }
                   1247: 
                   1248: 
                   1249: comma:
                   1250: 
                   1251:             f = op_stck[spx - 1];
                   1252: 
                   1253:             /* f= (spx>0 ? op_stck[spx-1] : 0);
                   1254:             * if (f) */ 
                   1255:             switch (f) {
                   1256: 
                   1257:                 case '$':           /* first arg of $function */
                   1258:                     
                   1259:                     if (op_stck[spx - 2] == 's') {  /* we already have one valid arg */
                   1260:                         
                   1261:                         i = 0;          /* quote *//* and skip rest of select */
                   1262:                         j = 0;          /* bracket */
                   1263:                         
                   1264:                         for (;;) {
                   1265: 
                   1266:                             ch = *++codptr;
                   1267:                             
                   1268:                             if (ch == '"') {
                   1269:                                 toggle (i);
                   1270:                                 continue;
                   1271:                             }
                   1272: 
                   1273:                             if (i) {
                   1274:                                 if (ch != EOL) continue;
                   1275:                                 
                   1276:                                 merr_raise (QUOTER);
                   1277:                                 return;
                   1278:                             }
                   1279: 
                   1280:                             if (ch == ')') {
                   1281:                                 
                   1282:                                 if (j--) continue;
                   1283:                                 
                   1284:                                 spx -= 3;
                   1285:                                 
                   1286:                                 goto nxt_operator;
                   1287:                             }
                   1288: 
                   1289:                             if (ch == '(') {
                   1290:                                 j++;
                   1291:                                 continue;
                   1292:                             }
                   1293: 
                   1294:                             if (ch == EOL) {
                   1295:                                 merr_raise (SELER);
                   1296:                                 return;
                   1297:                             }
                   1298:                         }
                   1299: 
                   1300:                     }
                   1301: 
                   1302:                     /* function argument */
                   1303:                     /* put comma on the stack */
                   1304:                     if (++spx > PARDEPTH) {
                   1305:                         merr_raise (STKOV);
                   1306:                         return;
                   1307:                     }
                   1308: 
                   1309:                     op_stck[spx] = f;       /* '$' */
                   1310: 
                   1311:                     /*       a+=stlen(a)+1; */ 
                   1312:                     
                   1313:                     while (*a++ != EOL);
                   1314: 
                   1315:                     codptr++;
                   1316:                     
                   1317:                     goto nextchr;
                   1318: 
                   1319: 
                   1320:                 case ARRAY:         /* array subscript */
                   1321: 
                   1322:                     *(a - 1) = DELIM;
                   1323:                     arg--;
                   1324:                     spx--;
                   1325: 
                   1326:                     while (*a++ != EOL) ;
                   1327: 
                   1328:                     codptr++;
                   1329: 
                   1330:                     goto nextchr;
                   1331: 
                   1332: 
                   1333:                 default:
                   1334: 
                   1335:                     if ((extyp == NAME) || (spx > 1)) {
                   1336:                         merr_raise (INVEXPR);
                   1337:                         return;
                   1338:                     }
                   1339:                 
                   1340:                     return;
                   1341: 
                   1342:             }
                   1343: 
                   1344:         case '^':
                   1345: 
                   1346:             if (extyp == LABEL || extyp == OFFSET) break;
                   1347:             
                   1348: uparrow:
                   1349:         
                   1350:             if (spx >= 5) {         /* take care of $TEXT with three args */
                   1351:                 
                   1352:                 if (op_stck[spx - 4] == 't' && op_stck[spx - 3] == '$' && op_stck[spx - 1] == '$') {
                   1353: 
                   1354:                     if (++spx > PARDEPTH) {
                   1355:                         merr_raise (STKOV);
                   1356:                         return;
                   1357:                     }
                   1358: 
                   1359:                     op_stck[spx] = '$';
                   1360:                     
                   1361:                     while (*a++ != EOL);
                   1362:                     
                   1363:                     if (*(codptr+1)=='@') goto next05;
                   1364: 
                   1365:                 }
                   1366: 
                   1367:             }
                   1368: 
                   1369:             goto scan_name;
                   1370:     
                   1371: 
                   1372:         case '.':
                   1373: 
                   1374:             if ((ch = *++codptr) < '0' || ch > '9') {
                   1375:                 merr_raise (INVEXPR);
                   1376:                 return;
                   1377:             }
                   1378: 
                   1379:             if ((argstck[++arg] = a) >= s) {
                   1380:                 
                   1381:                 char   *bak;
                   1382:                 bak = partition;
                   1383:                 
                   1384:                 if (getpmore () == 0) {
                   1385:                     merr_raise (STKOV);
                   1386:                     return;
                   1387:                 }
                   1388: 
                   1389:                 a = a - bak + partition;
                   1390:                 b = b - bak + partition;
                   1391: 
                   1392:             }
                   1393:             
                   1394:             i = 1;              /* point flag */
                   1395:             j = 0;              /* exp flag */
                   1396:             f = '.';            /* first character */
                   1397:             b = a;
                   1398:             *b++ = f;
                   1399:             
                   1400:             goto p_entry;
                   1401: 
                   1402: 
                   1403:         case ')':
                   1404: 
                   1405:             if (spx <= 1) {
                   1406: 
                   1407:                 if (setpiece) return;
                   1408: 
                   1409:                 if (spx == 0) {
                   1410:                     merr_raise (BRAER);
                   1411:                     return;
                   1412:                 }
                   1413: 
                   1414:             }
                   1415: 
                   1416:             if (op_stck[spx] != OPERAND) {
                   1417:                 merr_raise (INVEXPR);
                   1418:                 return;
                   1419:             }
                   1420: 
                   1421:             if ((f = op_stck[spx - 1]) == ARRAY) {  /* array return */
                   1422:                 
                   1423:                 *--a = DELIM;
                   1424:                 stcpy (varnam, a = argstck[--arg]);
                   1425:             
                   1426:                 if ((spx -= 2) <= 0 && extyp != STRING && extyp != ARGIND) return;
                   1427:                 
                   1428:                 goto var1;
                   1429:             
                   1430:             }
                   1431:             
                   1432:             /* precedence close parenthesis */
                   1433:             if (f == '(') {
                   1434:                 spx -= 2;
                   1435:                 goto nxt_operator;
                   1436:             }
                   1437: 
                   1438:             if (spx <= 2) {
                   1439:                 merr_raise (BRAER);
                   1440:                 return;
                   1441:             }               /* unmatched ')' */
                   1442: 
                   1443: 
                   1444:             /**
                   1445:             * *********** function evaluation ******************************************
                   1446:             * 
                   1447:             * Note: Input for function() is found in 'partition':
                   1448:             * There are 'f' arguments to be found at 'a'
                   1449:             * The arguments are separated by an EOL character.
                   1450:             * There is a list of the addresses of the arguments
                   1451:             * in 'a==argstck[arg], argstck[arg+1], argstck[arg+f-1]'
                   1452:             * Result is returned at a==argstck[arg]
                   1453:             * 
                   1454:             */
                   1455:             f = 1;              /* f == number of arguments */
                   1456:             if (op_stck[spx -= 2] == OPERAND) {
                   1457: 
                   1458:                 do {
                   1459:                     f++;
                   1460:                     arg--;
                   1461:                 } while (op_stck[spx -= 2] == OPERAND);
                   1462:                 
                   1463:                 a = argstck[arg];
                   1464: 
                   1465:             }
                   1466: 
                   1467:             i = op_stck[spx--];
                   1468:         
                   1469:             switch (i) {            /* function select */
                   1470:                 
                   1471: 
                   1472:                 case 'e':           /* $EXTRACT */
                   1473: 
                   1474:                     switch (f) {
                   1475: 
                   1476: 
                   1477:                         case 1:
                   1478:                         
                   1479:                             a[1] = EOL;
                   1480:                             goto nxt_operator;
                   1481:                         
                   1482: 
                   1483:                         case 2:
                   1484:                         
                   1485:                             b = argstck[arg + 1];
                   1486:                             i = intexpr (b) - 1;    /* numeric value of 2nd argument */
                   1487: 
                   1488:                             /*set_io (UNIX);
                   1489:                             printf ("i = %d a = '%s'\n", i, a[i]);
                   1490:                             set_io (MUMPS);*/
                   1491:                             
                   1492:                             if (merr () == MXNUM) {
                   1493:                                 merr_raise (OK);
                   1494:                                 if (i >= 0) i = 256;
                   1495:                             }
                   1496: 
                   1497:                             f = b - a - 1;      /* length of first argument */
                   1498:                             
                   1499:                             if (i > f || i < 0) {
                   1500:                                 if (i > f) {
                   1501:                                     a[0] = EOL;
                   1502:                                     goto nxt_operator;
                   1503:                                 }
                   1504:                                 if (i < 0) {
                   1505:                                     if (en_revstrf && !standard) {
                   1506:                                         a[0] = a[f - (abs(i) - 1)];
                   1507:                                         a[1] = EOL;
                   1508:                                     }
                   1509:                                     else {
                   1510:                                         a[0] = EOL;
                   1511:                                     }
                   1512:                                 }
                   1513:                             }
                   1514:                             else {
                   1515:                                 /* out of range */
                   1516:                                 a[0] = a[i];
                   1517:                                 a[1] = EOL;
                   1518:                             }           /* get character */
                   1519:                             
                   1520:                             goto nxt_operator;
                   1521: 
                   1522: 
                   1523:                         case 3:
                   1524: 
                   1525:                         {
                   1526:                             char tstr[STRLEN];
                   1527:                             long int e_length;
                   1528:                             long int e_start;
                   1529:                             long int e_end;
                   1530: 
                   1531:                             stcpy (tstr, a);
                   1532: 
                   1533:                             e_start = intexpr (argstck[arg + 1]) - 1;
                   1534:                             e_end = intexpr (argstck[arg + 2]);
                   1535:                             e_length = stlen(tstr);
                   1536: 
                   1537:                             if (e_start < 0) {
                   1538: 
                   1539:                                 if (en_revstrf && !standard) {
                   1540:                                     e_start = e_length - abs(e_start) + 1;
                   1541:                                 }
                   1542:                                 else {
                   1543:                                     a[0] = EOL;
                   1544:                                     goto nxt_operator;
                   1545:                                 }
                   1546: 
                   1547:                             }
                   1548:                             
                   1549:                             if (e_end < 0) {
                   1550: 
                   1551:                                 if (en_revstrf && !standard) {
                   1552:                                     e_end = e_length - abs(e_end) + 1;
                   1553:                                 }
                   1554:                                 else {
                   1555:                                     a[0] = EOL;
                   1556:                                     goto nxt_operator;
                   1557:                                 }
                   1558: 
                   1559:                             }
                   1560: 
                   1561:                             tstr[e_end] = EOL;
                   1562:                             stcpy (a, &(tstr[e_start]));
                   1563: 
                   1564:                             goto nxt_operator;
                   1565:                             
                   1566:                         }
                   1567:                             
                   1568:                         default:
                   1569:                             merr_raise (FUNARG); 
                   1570:                                 
                   1571:                             {
                   1572:                                 return;
                   1573:                             }
                   1574: 
                   1575:                     }
                   1576: 
                   1577:                 case 'a':           /* $ASCII */
                   1578: 
                   1579:                     if (f == 1) {
                   1580:                         intstr (a, (*a != EOL ? UNSIGN ((int) *a) : -1));
                   1581:                         goto nxt_operator;
                   1582:                     }
                   1583: 
                   1584:                     if (f > 2) {
                   1585:                         merr_raise (FUNARG);
                   1586:                         return;
                   1587:                     }
                   1588: 
                   1589:                     b = argstck[arg + 1];
                   1590:                     i = intexpr (b);
                   1591: 
                   1592:                     /* ascii number of selected character or -1 if out of range */
                   1593:                     intstr (a, (i >= (b - a)) || i <= 0 ? -1 : UNSIGN ((int) a[i - 1]));
                   1594:                     
                   1595:                     goto nxt_operator;
                   1596: 
                   1597: 
                   1598:                 case 'c':           /* $CHARACTER */
                   1599: 
                   1600:                     {
                   1601:                         short l, l1, m, n;
                   1602: 
                   1603:                         l1 = f;
                   1604:                         i = 0;
                   1605:                         f = 0;
                   1606:                         j = 0;
                   1607:                         m = 0;
                   1608:                         n = 1;
                   1609:                         l = 0;
                   1610: 
                   1611:                         for (;;) {
                   1612:                             
                   1613:                             if ((ch = a[i++]) == EOL) {
                   1614: 
                   1615:                                 if (m == 0) {
                   1616: 
                   1617:                                     if (j > DEL) {
                   1618:                                     
                   1619:                                         if (standard) {
                   1620:                                             merr_raise (NOSTAND);
                   1621:                                             return;
                   1622:                                         }
                   1623:                                     
                   1624:                                         if (eightbit) {
                   1625:                                             j &= 0377;
                   1626:                                             if ((((char) j) == EOL) || (((char) j) == DELIM)) j = NUL;
                   1627:                                         } 
                   1628:                                         else {
                   1629:                                             j &= 0177;
                   1630:                                         }
                   1631: 
                   1632:                                     }
                   1633: 
                   1634:                                     if (f >= STRLEN) {
                   1635:                                         a[f] = EOL;
                   1636:                                         merr_raise (M75);
                   1637:                                     
                   1638:                                         return;
                   1639:                                     }
                   1640: 
                   1641:                                     a[f++] = j;
                   1642: 
                   1643:                                 }
                   1644: 
                   1645:                                 if (++l >= l1) break;
                   1646: 
                   1647:                                 j = 0;
                   1648:                                 m = 0;
                   1649:                                 n = 1;
                   1650:                                 
                   1651:                                 continue;
                   1652: 
                   1653:                             }
                   1654: 
                   1655:                             if (n == 0) continue;
                   1656:                             
                   1657:                             if (ch >= '0' && ch <= '9') {
                   1658:                                 j *= 10;
                   1659:                                 j += ch - '0';
                   1660:                             
                   1661:                                 continue;
                   1662:                             }
                   1663: 
                   1664:                             if (ch == '-') {
                   1665:                                 m |= 01;
                   1666:                                 continue;
                   1667:                             }
                   1668: 
                   1669:                             if (ch != '+') n = 0;
                   1670: 
                   1671:                         }
                   1672: 
                   1673:                         a[f] = EOL;
                   1674: 
                   1675:                     }
                   1676:                     
                   1677:                     goto nxt_operator;
                   1678: 
                   1679: 
                   1680:                 case 'p':           /* $PIECE */
                   1681: 
                   1682:                     {
                   1683:                         long l, l1, m, n;
                   1684: 
                   1685:                         b = argstck[arg + 1];
                   1686:                         l1 = b - a - 1;     /* length of 1st argument */
                   1687: 
                   1688:                         switch (f) {
                   1689: 
                   1690: 
                   1691:                             case 2:
                   1692: 
                   1693:                                 f = 1;
                   1694:                                 l = 1;
                   1695: 
                   1696:                                 break;
                   1697:                             
                   1698: 
                   1699:                             case 3:
                   1700: 
                   1701:                                 f = intexpr (argstck[arg + 2]);
                   1702:                                 
                   1703:                                 if (merr () == MXNUM) {
                   1704:                                     merr_raise (OK);
                   1705:                                     if (j >= 0) f = 256;
                   1706:                                 }
                   1707: 
                   1708:                                 if (f <= 0) {
                   1709:                                     a[0] = EOL;
                   1710:                                     goto nxt_operator;
                   1711:                                 }
                   1712: 
                   1713:                                 l = f;
                   1714:                                 
                   1715:                                 break;
                   1716:                             
                   1717: 
                   1718:                             case 4:
                   1719: 
                   1720:                                 l = intexpr (argstck[arg + 3]);
                   1721:                                 
                   1722:                                 if (merr () == MXNUM) {
                   1723:                                     merr_raise (OK);
                   1724:                                     if (l >= 0) l = 256;
                   1725:                                 }
                   1726: 
                   1727:                                 if ((f = intexpr (argstck[arg + 2])) <= 0) f = 1;
                   1728: 
                   1729:                                 if (merr () == MXNUM) {
                   1730:                                     merr_raise (OK);
                   1731:                                     if (f >= 0) f = 256;
                   1732:                                 }
                   1733: 
                   1734:                                 if (f > l) {
                   1735:                                     a[0] = EOL;
                   1736:                                     goto nxt_operator;
                   1737:                                 }
                   1738: 
                   1739:                                 break;
                   1740:                             
                   1741: 
                   1742:                             default:
                   1743: 
                   1744:                                 merr_raise (FUNARG);
                   1745:                                 return;
                   1746:                         }
                   1747: 
                   1748:                         i = 0;
                   1749:                         m = 0;
                   1750:                         ch = 0;
                   1751:                         
                   1752:                         while (b[ch] != EOL) ch++;       /* $l of 2nd arg */
                   1753: 
                   1754:                         if (ch == 1) {
                   1755: 
                   1756:                             ch = b[0];
                   1757:                             j = 1;
                   1758:                             
                   1759:                             if (f > 1) {
                   1760: 
                   1761:                                 while (i < l1) {    /* scan 1st string ... */
                   1762:                                 
                   1763:                                     if (a[i++] != ch) continue;   /* ... for occurence of 2nd */
                   1764:                                 
                   1765:                                     if (++j == f) {
                   1766:                                         m = i;
                   1767:                                         goto p10;
                   1768:                                     }
                   1769: 
                   1770:                                 }
                   1771: 
                   1772:                                 a[0] = EOL;
                   1773:                                 goto nxt_operator;
                   1774:                             
                   1775:                             }
                   1776:                             
                   1777: p10:
                   1778:                             for (; i < l1; i++) {
                   1779: 
                   1780:                                 if (a[i] != ch) continue;
                   1781:                                 
                   1782:                                 if (j == l) {
                   1783:                                     a[i] = EOL;
                   1784:                                     break;
                   1785:                                 }
                   1786: 
                   1787:                                 j++;
                   1788: 
                   1789:                             }
                   1790: 
                   1791:                             if (m > 0) stcpy (a, &a[m]);
                   1792: 
                   1793:                             goto nxt_operator;
                   1794: 
                   1795:                         }
                   1796:                         
                   1797:                         if (ch == 0) {
                   1798:                             a[0] = EOL;
                   1799:                             goto nxt_operator;
                   1800:                         }           /* 2nd arg is empty */
                   1801:                         
                   1802:                         /* else (ch>1) */
                   1803:                         n = 1;
                   1804:                         
                   1805:                         if (f > 1) {
                   1806: 
                   1807:                             while (i < l1) {    /* scan 1st string ... */
                   1808:                                 j = 0;
                   1809:                                 
                   1810: p20:
                   1811: 
                   1812:                                 if (a[i + j] != b[j]) {
                   1813:                                     i++;
                   1814:                                     continue;
                   1815:                                 }       /* ... for occurence of 2nd */
                   1816:                                 
                   1817:                                 if (++j < ch) goto p20;
                   1818: 
                   1819:                                 i += ch;    /* skip delimiter */
                   1820:                                 
                   1821:                                 if (++n == f) {
                   1822:                                     m = i;
                   1823:                                     goto p30;
                   1824:                                 }
                   1825:                             }
                   1826:                             
                   1827:                             a[0] = EOL;
                   1828:                             
                   1829:                             goto nxt_operator;
                   1830:                         
                   1831:                         }
                   1832: p30:                    
                   1833:                         while (i < l1) {
                   1834:                             j = 0;
                   1835:                             
                   1836: p40:
                   1837: 
                   1838:                             if (a[i + j] != b[j]) {
                   1839:                                 i++;
                   1840:                                 continue;
                   1841:                             }
                   1842: 
                   1843:                             if (++j < ch) goto p40;
                   1844:                             
                   1845:                             if (n == l) {
                   1846:                                 a[i] = EOL;
                   1847:                                 break;
                   1848:                             }           /* last $piece: done! */
                   1849:                             
                   1850:                             i += ch;
                   1851:                             n++;
                   1852: 
                   1853:                         }
                   1854: 
                   1855:                         if (m > 0) stcpy (a, &a[m]);
                   1856:                         
                   1857:                         goto nxt_operator;
                   1858:                     
                   1859:                     }
                   1860: 
                   1861:                 case 'l':           /* $LENGTH */
                   1862: 
                   1863:                     if (f == 1) {
                   1864:                         lintstr (a, stlen (a));
                   1865:                         goto nxt_operator;
                   1866:                     }
                   1867: 
                   1868:                     if (f > 2) {
                   1869:                         merr_raise (FUNARG);
                   1870:                         return;
                   1871:                     }
                   1872: 
                   1873:                     i = 0;
                   1874:                     j = 0;
                   1875:                     ch = 0;
                   1876:                     b = argstck[arg + 1];
                   1877:                     
                   1878:                     if ((f = stlen (b))) {
                   1879: 
                   1880:                         f--;
                   1881:                         
                   1882:                         while ((i = find (&a[ch], b)) > 0) {
                   1883:                         j++;
                   1884:                         ch += i + f;
                   1885:                         }
                   1886:                         
                   1887:                         j++;
                   1888: 
                   1889:                     }
                   1890: 
                   1891:                     intstr (a, j);
                   1892: 
                   1893:                     goto nxt_operator;
                   1894: 
                   1895:                 case 'f':           /* $FIND */
                   1896: 
                   1897:                     {
                   1898:                         short l1;
                   1899: 
                   1900:                         if (f < 2 || f > 3) {
                   1901:                             merr_raise (FUNARG);
                   1902:                             return;
                   1903:                         }
                   1904: 
                   1905:                         if (f == 3) {
                   1906: 
                   1907:                             i = intexpr (argstck[arg + 2]);
                   1908:                             
                   1909:                             if (merr () == MXNUM) {
                   1910:                                 
                   1911:                                 if (i > 0) i = 256;
                   1912:                                 
                   1913:                                 merr_raise (OK);
                   1914:                                 
                   1915:                                 /* important special case:
                   1916:                                 * $FIND("","",number) ::= $S(number<1:1,1:integer(number))
                   1917:                                 * needs special treatment so that it does not yield wrong
                   1918:                                 * results on large values of number.
                   1919:                                 */
                   1920:                                 if ((argstck[arg + 1][0] == EOL) && (i > 0)) {
                   1921: 
                   1922:                                     numlit (argstck[arg + 2]);
                   1923:                                     
                   1924:                                     i = 0;
                   1925:                                     
                   1926:                                     while ((a[i] = argstck[arg + 2][i]) != EOL) {
                   1927: 
                   1928:                                         if (a[i] == '.') {
                   1929:                                             a[i] = EOL;
                   1930:                                             break;
                   1931:                                         }
                   1932: 
                   1933:                                         i++;
                   1934: 
                   1935:                                     }
                   1936: 
                   1937:                                     goto nxt_operator;
                   1938: 
                   1939:                                 }
                   1940:                             }
                   1941: 
                   1942:                             i--;
                   1943:                             
                   1944:                             if (i < 0) i = 0;
                   1945: 
                   1946:                         } 
                   1947:                         else {
                   1948:                             i = 0;
                   1949:                         }
                   1950: 
                   1951:                         b = argstck[arg + 1];
                   1952:                         j = b - a - 1;      /* length of first argument */
                   1953:                         
                   1954:                         if ((l1 = stlen (b)) == 0) {
                   1955:                             i++;
                   1956:                             goto f20;
                   1957:                         }
                   1958: 
                   1959:                         for (f = i; f < j; f++) {
                   1960:                             
                   1961:                             for (ch = 0; ch < l1; ch++) {
                   1962:                                 if (a[f + ch] != b[ch]) goto f10;
                   1963:                             }
                   1964: 
                   1965:                             i = (++f) + l1;
                   1966:                             
                   1967:                             goto f20;
                   1968: 
                   1969: f10:
                   1970:                             ; /* null statement to avoid compiler error
                   1971:                                  due to having a label at the end of a
                   1972:                                  block */
                   1973: 
                   1974:                         }
                   1975: 
                   1976:                         i = 0;
                   1977:                         
                   1978: f20:
                   1979: 
                   1980:                         lintstr (a, i);
                   1981: 
                   1982:                     }
                   1983: 
                   1984:                     goto nxt_operator;
                   1985: 
                   1986: 
                   1987:                 case 'j':           /* $JUSTIFY */
                   1988: 
                   1989:                     if (f < 2 || f > 3) {
                   1990:                         merr_raise (FUNARG);
                   1991:                         return;
                   1992:                     } 
                   1993: 
                   1994:                     {
                   1995:                         long l, l1;
                   1996: 
                   1997:                         l = intexpr (b = argstck[arg + 1]); /* 2nd arg */
                   1998:                         if (merr () == MXNUM) return; /* $J() arg number overflow */
                   1999:                         
                   2000:                         if (l > STRLEN) {
                   2001:                             /* $J() width string too long   */
                   2002:                             merr_raise (M75);
                   2003:                             return;
                   2004:                         }
                   2005: 
                   2006:                         if (f == 2) {
                   2007:                             f = b - a - 1;
                   2008:                         } 
                   2009:                         else {
                   2010: 
                   2011:                             f = intexpr (argstck[arg + 2]); /* 3rd arg */
                   2012: 
                   2013:                             if (merr () == MXNUM) return;  /* $J() arg number overflow */
                   2014: 
                   2015:                             if (f > (STRLEN - 2)) {
                   2016:                                 /* $J() .precision too long */
                   2017:                                 merr_raise (M75);
                   2018:                                 return;
                   2019:                             }
                   2020: 
                   2021:                             numlit (a);
                   2022:                             
                   2023:                             if (f < 0) {
                   2024:                                 merr_raise (ARGER);
                   2025:                                 return;
                   2026:                             }
                   2027: 
                   2028:                             /* s j=$l(a),i=$f(a,".")-1 */
                   2029:                             j = (a[0] == '-');
                   2030:                             
                   2031:                             if (a[j] == '.') {  /* insert leading zero */
                   2032:                                 
                   2033:                                 i = j;
                   2034:                                 
                   2035:                                 while (a[i++] != EOL);
                   2036:                                 
                   2037:                                 while (i > j) {
                   2038:                                     a[i] = a[i - 1];
                   2039:                                     i--;
                   2040:                                 }
                   2041: 
                   2042:                                 a[j] = '0';
                   2043: 
                   2044:                             }
                   2045: 
                   2046:                             i = (-1);
                   2047:                             j = 0;
                   2048:                             
                   2049:                             while (a[j] != EOL) {
                   2050:                                 if (a[j] == '.') i = j;
                   2051:                                 j++;
                   2052:                             }
                   2053: 
                   2054:                             if (i < 0) {
                   2055:                                 a[i = j] = '.';
                   2056:                                 a[j + 1] = EOL;
                   2057:                             } 
                   2058:                             else {
                   2059:                                 j--;
                   2060:                             }
                   2061:                             
                   2062:                             if (j - i > f) {    /* rounding required */
                   2063:                                 
                   2064:                                 if ((l1 = f + i + 1) > STRLEN) {
                   2065:                                     merr_raise (M75);
                   2066:                                     return;
                   2067:                                 }
                   2068:                                 
                   2069:                                 if (a[l1] > '4') {
                   2070: 
                   2071:                                     do {
                   2072:                                         
                   2073:                                         if (a[--l1] == '.') l1--;
                   2074: 
                   2075:                                         if (l1 < (a[0] == '-')) {
                   2076: 
                   2077:                                             for (l1 = f + i + 1; l1 > 0; l1--) a[l1] = a[l1 - 1];
                   2078:                                             
                   2079:                                             a[a[0] == '-'] = '1';
                   2080:                                             i++;
                   2081:                                             
                   2082:                                             break;
                   2083:                                         
                   2084:                                         }
                   2085:                                         
                   2086:                                         a[l1]++;
                   2087:                                         
                   2088:                                         if (a[l1] == ':') a[l1] = '0';
                   2089: 
                   2090:                                     } while (a[l1] == '0');
                   2091: 
                   2092:                                 }
                   2093: 
                   2094:                                 a[f + i + 1] = EOL;
                   2095:                                 
                   2096:                                 if (a[0] == '-' && a[1] == '0') {
                   2097:                                     
                   2098:                                     l1 = 2;
                   2099:                                     
                   2100:                                     while (a[l1] != EOL) {
                   2101:                                         
                   2102:                                         if (a[l1] >= '1' && a[l1] <= '9') {
                   2103:                                             l1 = 0;
                   2104:                                             break;
                   2105:                                         }
                   2106:                                         
                   2107:                                         l1++;
                   2108: 
                   2109:                                     }
                   2110: 
                   2111:                                     if (l1) {
                   2112: 
                   2113:                                         i--;
                   2114:                                         l1 = 0;
                   2115:                                         
                   2116:                                         while ((a[l1] = a[l1 + 1]) != EOL) l1++;
                   2117: 
                   2118:                                     }
                   2119:                                 }
                   2120: 
                   2121:                             }
                   2122:                             else { /* rounding not required */
                   2123: 
                   2124:                                 if (f + i + 1 > STRLEN) {
                   2125:                                     merr_raise (M75);
                   2126:                                     return;
                   2127:                                 }
                   2128: 
                   2129:                                 while (j < f + i) a[++j] = '0';
                   2130: 
                   2131:                                 a[++j] = EOL;
                   2132:                             
                   2133:                             }
                   2134:                             
                   2135:                             if (f == 0) a[i] = EOL;
                   2136: 
                   2137:                         }           /* end of 3 arg-form */
                   2138:                         
                   2139:                         if (f < l) {
                   2140: 
                   2141:                             i = stlen (a) + 1;
                   2142:                             
                   2143:                             if (++l <= i) goto nxt_operator;
                   2144: 
                   2145:                             while (i >= 0) a[l--] = a[i--];
                   2146:                             while (l >= 0) a[l--] = SP;
                   2147: 
                   2148:                         }
                   2149: 
                   2150:                     }
                   2151:                     
                   2152:                     goto nxt_operator;
                   2153:                 
                   2154: 
                   2155:                 /* case 'd': *//* $DATA */
                   2156:                 /* case 'g': *//* $GET */
                   2157:                 /* case 'i': *//* $INCREMENT */
                   2158:                 /* case 'n': *//* $NEXT */
                   2159:                 /* case ZNEXT: *//* $ZNEXT */
                   2160:                 /* case ZPREVIOUS: *//* $ZPREVIOUS */
                   2161:                 case 'o':           /* $ORDER */
                   2162: 
                   2163:                     if (f > 2) {
                   2164:                         merr_raise (FUNARG);
                   2165:                         return;
                   2166:                     }
                   2167:                     
                   2168:                     stcpy (varnam, argstck[arg]);
                   2169:                     ordercnt = intexpr (argstck[arg + 1]);
                   2170:                     ordercounter = 0;
                   2171:                     
                   2172:                     if (varnam[0] != '^') {
                   2173:                         symtab (fra_order, varnam, a);
                   2174:                     }
                   2175:                     else if (varnam[1] != '$') {
                   2176:                         global  (fra_order, varnam, a);
                   2177:                     }
                   2178:                     else {
                   2179:                         ssvn (fra_order, varnam, a);
                   2180:                     }
                   2181:                     
                   2182:                     goto nxt_operator;
                   2183: 
                   2184: 
                   2185:                 case 'q':           /* $QUERY */
                   2186:                     
                   2187:                     if (f > 2) {
                   2188:                         merr_raise (FUNARG);
                   2189:                         return;
                   2190:                     }
                   2191: 
                   2192:                     stcpy (varnam, argstck[arg]);
                   2193:                     ordercnt = intexpr (argstck[arg + 1]);
                   2194: 
                   2195:                     if (varnam[0] == '^' && varnam[1] == '$') {
                   2196:                         ssvn (fra_query, varnam, a);
                   2197:                     }
                   2198:                     else if (ordercnt == 1) {
                   2199:                         if (varnam[0] != '^') {
                   2200:                             symtab (fra_query, varnam, a);
                   2201:                         }
                   2202:                         else {
                   2203:                             global (fra_query, varnam, a);
                   2204:                         }
                   2205:                     }
                   2206:                     else {
                   2207:                         char qryarg_ext[256];
                   2208: 
                   2209:                         freem_ref_t *revq_ref = (freem_ref_t *) malloc (sizeof (freem_ref_t));
                   2210: 
                   2211:                         /* convert the $QUERY argument from internal to external format */
                   2212:                         mref_init (revq_ref, MREF_RT_GLOBAL, "scratch");
                   2213:                         internal_to_mref (revq_ref, varnam);
                   2214:                         mref_to_external (revq_ref, qryarg_ext);
                   2215: 
                   2216:                         stcnv_c2m (qryarg_ext);
                   2217: 
                   2218:                         /* put the $QUERY argument into the local variable %INT.REVQ */
                   2219:                         symtab (set_sym, "%INT.REVQ\201\201", qryarg_ext);
                   2220: 
                   2221:                         /* set up for calling into polyfill wrapper */
                   2222:                         code[0] = '\201';
                   2223:                         stcpy (code, "$^%ZREVQRY\201");
                   2224: 
                   2225:                         codptr = code;
                   2226: 
                   2227:                         f = '$';
                   2228: 
                   2229:                         zexflag = TRUE;
                   2230: 
                   2231:                         /* run the polyfill wrapper */
                   2232:                         goto extra_fun;
                   2233:                     }
                   2234: 
                   2235:                     goto nxt_operator;
                   2236: 
                   2237: 
                   2238:                 case 'N':           /* $NAME */
                   2239: 
                   2240:                     if (f > 2) {
                   2241:                         merr_raise (FUNARG);
                   2242:                         return;
                   2243:                     }
                   2244: 
                   2245:                     f = intexpr (argstck[arg + 1]);
                   2246:                     
                   2247:                     if (f < 0) {
                   2248:                         merr_raise (ARGER);
                   2249:                         return;
                   2250:                     }
                   2251: 
                   2252:                     i = 0;
                   2253:                     
                   2254:                     while (a[++i] != EOL) {
                   2255:                         if (a[i] == DELIM && --f < 0) {
                   2256:                             break;
                   2257:                         }
                   2258:                     }
                   2259:                     
                   2260:                     a[i] = EOL;
                   2261: 
                   2262:                     stcpy (varnam, a);
                   2263:                     zname (a, varnam);
                   2264: 
                   2265:                     goto nxt_operator;
                   2266: 
                   2267: 
                   2268:                 case QLENGTH:           /* $QLENGTH */
                   2269: 
                   2270:                     if (f != 1) {
                   2271:                         merr_raise (FUNARG);
                   2272:                         return;
                   2273:                     }
                   2274: 
                   2275:                     f = 0;
                   2276:                     i = 0;
                   2277:                     
                   2278:                     {
                   2279:                         int ch, quote;
                   2280: 
                   2281:                         quote = 0;
                   2282:                         
                   2283:                         while ((ch = a[i++]) != EOL) {
                   2284: 
                   2285:                             if (ch == '"') quote = !quote;
                   2286:                             if (quote) continue;
                   2287:                             if (ch == '(' && f == 0) f = 1;
                   2288:                             if (ch == ',') f++;
                   2289:                         
                   2290:                         }
                   2291:                     
                   2292:                     }
                   2293:                     
                   2294:                     intstr (a, f);
                   2295:                     
                   2296:                     goto nxt_operator;
                   2297: 
                   2298: 
                   2299:                 case QSUBSCRIPT: /* $QSUBSCRIPT */
                   2300: 
                   2301:                     if (f != 2) {
                   2302:                         merr_raise (FUNARG);
                   2303:                         return;
                   2304:                     }
                   2305: 
                   2306:                     if ((f = intexpr (argstck[arg+1])) < -1) {
                   2307:                         merr_raise (ARGER);
                   2308:                         return;
                   2309:                     }
                   2310: 
                   2311:                     { 
                   2312:                         int ch, env, quote, count, startsub;
                   2313:                         
                   2314:                         if (f == -1) { /* get environment */
                   2315:                             
                   2316:                             quote = 0; 
                   2317:                             env = FALSE; 
                   2318:                             count = 0; 
                   2319:                             startsub = 0; 
                   2320:                             i = 0;
                   2321: 
                   2322:                             while ((ch = a[i++]) != EOL) {
                   2323: 
                   2324:                                 if (ch == '"') quote= !quote;
                   2325:                                 if (quote) continue;
                   2326: 
                   2327:                                 if (ch == '|') {
                   2328:                                     
                   2329:                                     if (env) {
                   2330:                                         a[i-1] = EOL;
                   2331:                                         stcpy (a, &a[startsub]);
                   2332:                                     
                   2333:                                         break;
                   2334:                                     
                   2335:                                     }
                   2336:                                     else {
                   2337:                                         startsub = i;
                   2338:                                         env = TRUE;
                   2339:                                     }
                   2340: 
                   2341:                                 }
                   2342: 
                   2343:                             }
                   2344: 
                   2345:                             if (!env) *a= EOL;
                   2346: 
                   2347:                         }
                   2348:                         else {
                   2349: 
                   2350:                             quote = 0; 
                   2351:                             env = FALSE; 
                   2352:                             count = 0; 
                   2353:                             startsub = 0; 
                   2354:                             i = 0;
                   2355: 
                   2356:                             while ((ch=a[i++])!=EOL) {
                   2357: 
                   2358:                                 if (ch == '"') quote = !quote;
                   2359:                                 if (quote) continue;
                   2360: 
                   2361:                                 if (ch == '|' && count == 0) {
                   2362:                                 
                   2363:                                     if (env) {
                   2364: 
                   2365:                                         if (*a == '^') a[--i] = '^';
                   2366:                                         
                   2367:                                         startsub = i;
                   2368: 
                   2369:                                     }
                   2370:                                     else {  
                   2371:                                         env = TRUE;
                   2372:                                     }
                   2373: 
                   2374:                                 }
                   2375:                                 
                   2376:                                 if (ch == '(' || ch == ',' || ch == ')') {
                   2377:                                     
                   2378:                                     if (count == f) { 
                   2379:                                         a[i-1] = EOL; 
                   2380:                                         break; 
                   2381:                                     }
                   2382:                                     
                   2383:                                     count++; 
                   2384:                                     startsub = i;
                   2385: 
                   2386:                                 }
                   2387: 
                   2388:                             }
                   2389:                             
                   2390:                             if (startsub) stcpy (a, &a[startsub]);
                   2391:                             
                   2392:                             if (count < f) *a = EOL;
                   2393: 
                   2394:                         }
                   2395:                         if (a[0] == '"') { /* un-quote */
                   2396: 
                   2397:                             quote = 1; 
                   2398:                             i = 1; 
                   2399:                             f = 0;
                   2400:                             
                   2401:                             while ((ch = a[i++]) != EOL) {
                   2402: 
                   2403:                                 if (ch == '"') quote = !quote;
                   2404:                                 
                   2405:                                 if (quote) a[f++] = ch;
                   2406: 
                   2407:                             }
                   2408: 
                   2409:                             a[f] = EOL;
                   2410: 
                   2411:                         }
                   2412: 
                   2413:                     }
                   2414: 
                   2415:                 /* goto nxt_operator; */
                   2416: 
                   2417: 
                   2418:                 case 's':           /* $SELECT */
                   2419:                 
                   2420:                     goto nxt_operator;
                   2421: 
                   2422:                     
                   2423:                 case SVNstack:          /* $STACK() */
                   2424: 
                   2425:                     if (f > 2) {
                   2426:                         merr_raise (FUNARG);
                   2427:                         return;
                   2428:                     }
                   2429: 
                   2430:                     if (f == 1) {
                   2431: 
                   2432:                         char iex_buf[256];
                   2433:                         int iexp;
                   2434:                         
                   2435:                         stcpy (iex_buf, argstck[arg]);
                   2436:                         iexp = atoi (iex_buf);
                   2437: 
                   2438:                         /*set_io (UNIX);
                   2439:                         printf ("iexp = %d\n", iexp);
                   2440:                         set_io (MUMPS);
                   2441:                         */
                   2442:                         
                   2443:                         if (iexp == -1) {                            
                   2444:                             intstr (a, merr_topstk);
                   2445:                         }
                   2446:                         else if (iexp == 0) {
                   2447:                             stcpy (a, stack0);
                   2448:                         }
                   2449:                         else if (iexp > 0 && iexp <= merr_topstk) {
                   2450: 
                   2451:                             if (merr_topstk > nstx) {
                   2452:                                 stcpy (a, merr_stack[merr_topstk].ECODE);
                   2453:                             }
                   2454:                             else {
                   2455:                                 if (nestc[iexp] == '$') {
                   2456:                                     stcpy (a, "$$\201");
                   2457:                                 }
                   2458:                                 else {
                   2459:                                     if ((mtok_token_to_command (a, nestc[iexp])) != 1) {
                   2460:                                         stcpy (a, "???");
                   2461:                                     }
                   2462:                                 }
                   2463:                             }
                   2464:                             
                   2465:                         }
                   2466:                         else {
                   2467:                             merr_raise (FUNARG);
                   2468:                             return;
                   2469:                         }
                   2470: 
                   2471:                     }                
                   2472: 
                   2473:                     if (f == 2) {
                   2474: 
                   2475:                         int stkidx;
                   2476:                         char sub[255];
                   2477:                         char indst[255];
                   2478:                         stcpy (indst, argstck[arg]);
                   2479:                         stcnv_m2c (indst);
                   2480: 
                   2481:                         stkidx = atoi (indst);
                   2482: 
                   2483:                         if (stkidx > NESTLEVLS || stkidx < 0) {
                   2484:                             merr_raise (FUNARG);
                   2485:                             return;
                   2486:                         }
                   2487: 
                   2488:                         stcpy (sub, argstck[2]);
                   2489:                         stcnv_m2c (sub);
                   2490: 
                   2491:                         if (strcmp (sub, "MCODE") == 0) {
                   2492:                             strcpy (a, merr_stack[stkidx].MCODE);
                   2493:                         }
                   2494:                         else if (strcmp (sub, "ECODE") == 0) {
                   2495:                             strcpy (a, merr_stack[stkidx].ECODE);
                   2496:                         }
                   2497:                         else if (strcmp (sub, "PLACE") == 0) {
                   2498:                             strcpy (a, merr_stack[stkidx].PLACE);
                   2499:                         }
                   2500:                         else {
                   2501:                             merr_raise (SYNTERR);
                   2502:                             return;
                   2503:                         }
                   2504: 
                   2505:                         stcnv_c2m (a);
                   2506: 
                   2507:                     }
                   2508: 
                   2509:         
                   2510:                     goto nxt_operator;
                   2511: 
                   2512: 
                   2513:                 case FNUMBER:           /* $FNUMBER */
                   2514: 
                   2515:                     if (f < 2 || f > 3) {
                   2516:                         merr_raise (FUNARG);
                   2517:                         return;
                   2518:                     } 
                   2519: 
                   2520:                     {
                   2521: 
                   2522:                         short l1;
                   2523:                         short Pflag;
                   2524:                         short Tflag;
                   2525:                         short commaflag;
                   2526:                         short plusflag;
                   2527:                         short minusflag;
                   2528:                         short EuroFlag;
                   2529:                         short IsZero;
                   2530:                         
                   2531:                         Pflag = FALSE,
                   2532:                         Tflag = FALSE,
                   2533:                         commaflag = FALSE,
                   2534:                         plusflag = FALSE,
                   2535:                         minusflag = FALSE,
                   2536:                         EuroFlag = FALSE,
                   2537:                         IsZero = FALSE;
                   2538: 
                   2539:                         b = argstck[arg + 1];
                   2540: 
                   2541:                         while ((i = *b++) != EOL) { /* evaluate options */
                   2542: 
                   2543:                             switch (i) {
                   2544:                         
                   2545: 
                   2546:                                 case 'P':
                   2547: 
                   2548:                                     Pflag = TRUE;
                   2549:                                     continue;
                   2550:                         
                   2551: 
                   2552:                                 case 'p':
                   2553: 
                   2554:                                     if (lowerflag) Pflag = TRUE;
                   2555:                                     continue;
                   2556:                         
                   2557: 
                   2558:                                 case 'T':
                   2559: 
                   2560:                                     Tflag = TRUE;
                   2561:                                     continue;
                   2562:                         
                   2563: 
                   2564:                                 case 't':
                   2565: 
                   2566:                                     if (lowerflag) Tflag = TRUE;
                   2567:                                     continue;
                   2568:                         
                   2569: 
                   2570:                                 case ',':
                   2571: 
                   2572:                                     commaflag = TRUE;
                   2573:                                     continue;
                   2574:                             
                   2575: 
                   2576:                                 case '.':
                   2577: 
                   2578:                                     EuroFlag = TRUE;
                   2579:                                     continue;
                   2580:                         
                   2581: 
                   2582:                                 case '+':
                   2583: 
                   2584:                                     plusflag = TRUE;
                   2585:                                     continue;
                   2586:                         
                   2587: 
                   2588:                                 case '-':
                   2589: 
                   2590:                                     minusflag = TRUE;
                   2591: 
                   2592: 
                   2593:                             }
                   2594:                         }
                   2595: 
                   2596:                         if (Pflag && (Tflag || plusflag || minusflag)) {
                   2597:                             merr_raise (ARGER);
                   2598:                             return;
                   2599:                         }
                   2600: 
                   2601:                         if (f == 3) j = intexpr (argstck[arg + 2]); /* 3rd arg */
                   2602:                         
                   2603:                         if (merr () == MXNUM) {
                   2604:                         
                   2605:                             if (j >= 0) j = 256;
                   2606:                         
                   2607:                             merr_raise (OK);
                   2608:                         
                   2609:                         }
                   2610: 
                   2611:                         numlit (a);
                   2612:                         IsZero = (a[0] == '0');
                   2613: 
                   2614:                         if (f == 3) {
                   2615: 
                   2616:                             f = j;
                   2617:                             
                   2618:                             if (f < 0) {
                   2619:                                 merr_raise (ARGER);
                   2620:                                 return;
                   2621:                             }
                   2622: 
                   2623:                             if (f > STRLEN) {
                   2624:                                 merr_raise (M75);
                   2625:                                 return;
                   2626:                             }
                   2627: 
                   2628:                             /* s j=$l(a),i=$f(a,".")-1 */
                   2629:                             j = (a[0] == '-');
                   2630:                             
                   2631:                             if (a[j] == '.') {  /* insert leading zero */
                   2632: 
                   2633:                                 i = j;
                   2634:                             
                   2635:                                 while (a[i++] != EOL);
                   2636: 
                   2637:                                 while (i > j) {
                   2638:                                     a[i] = a[i - 1];
                   2639:                                     i--;
                   2640:                                 }
                   2641: 
                   2642:                                 a[j] = '0';
                   2643: 
                   2644:                             }
                   2645: 
                   2646:                             i = (-1);
                   2647:                             j = 0;
                   2648: 
                   2649:                             while (a[j] != EOL) {
                   2650: 
                   2651:                                 if (a[j] == '.') i = j;
                   2652:                                 
                   2653:                                 j++;
                   2654:                             
                   2655:                             }
                   2656: 
                   2657:                             if (i < 0) {
                   2658:                                 a[i = j] = '.';
                   2659:                                 a[j + 1] = EOL;
                   2660:                             } 
                   2661:                             else {
                   2662:                                 j--;
                   2663:                             }
                   2664: 
                   2665:                             if (j - i > f) {    /* rounding required */
                   2666: 
                   2667:                                 l1 = f + i + 1;
                   2668: 
                   2669:                                 if (a[l1] > '4') {
                   2670: 
                   2671:                                     do {
                   2672: 
                   2673:                                         if (a[--l1] == '.') l1--;
                   2674: 
                   2675:                                         if (l1 < 0) {
                   2676: 
                   2677:                                             for (l1 = f + i + 1; l1 > 0; l1--) {
                   2678:                                                 a[l1] = a[l1 - 1];
                   2679:                                             }
                   2680:                                             
                   2681:                                             a[0] = '1';
                   2682:                                             i++;
                   2683:                                             
                   2684:                                             break;
                   2685: 
                   2686:                                         }
                   2687: 
                   2688:                                         a[l1]++;
                   2689: 
                   2690:                                         if (a[l1] == ':') a[l1] = '0';
                   2691: 
                   2692:                                     } while (a[l1] == '0');
                   2693: 
                   2694:                                 }
                   2695: 
                   2696:                                 a[f + i + 1] = EOL;
                   2697:                                 
                   2698:                                 if (a[0] == '-' && a[1] == '0') {
                   2699: 
                   2700:                                     l1 = 2;
                   2701:                                     
                   2702:                                     while (a[l1] != EOL) {
                   2703: 
                   2704:                                         if (a[l1] >= '1' && a[l1] <= '9') {
                   2705:                                             l1 = 0;
                   2706:                                             break;
                   2707:                                         }
                   2708: 
                   2709:                                         l1++;
                   2710: 
                   2711:                                     }
                   2712: 
                   2713:                                     if (l1) {
                   2714: 
                   2715:                                         i--;
                   2716:                                         l1 = 0;
                   2717:                                         
                   2718:                                         while ((a[l1] = a[l1 + 1]) != EOL) l1++;
                   2719: 
                   2720:                                     }
                   2721: 
                   2722:                                 }
                   2723: 
                   2724:                             } 
                   2725:                             else {
                   2726:                             
                   2727:                                 if (f + i > STRLEN) {
                   2728:                                     merr_raise (M75);
                   2729:                                     return;
                   2730:                                 }
                   2731: 
                   2732:                                 while (j < f + i) a[++j] = '0';
                   2733: 
                   2734:                                 a[++j] = EOL;
                   2735:                             }
                   2736:                                 
                   2737:                             if (f == 0) a[i] = EOL;
                   2738: 
                   2739:                         }           /* end of 3 arg-form */
                   2740:                         
                   2741:                         if (commaflag) {
                   2742: 
                   2743:                             i = 0;
                   2744:                             
                   2745:                             while ((f = a[i]) != '.' && f != EOL) i++;
                   2746:                             
                   2747:                             if (a[0] == '-') {
                   2748: 
                   2749:                                 f = (i + 1) % 3;
                   2750:                                 j = 1;
                   2751:                                 i = 1;
                   2752:                                 tmp[0] = '-';
                   2753: 
                   2754:                             } 
                   2755:                             else {
                   2756: 
                   2757:                                 f = (i + 2) % 3;
                   2758:                                 j = 0;
                   2759:                                 i = 0;
                   2760: 
                   2761:                             }
                   2762: 
                   2763:                             while ((tmp[j++] = a[i]) != EOL) {
                   2764: 
                   2765:                                 if (j >= STRLEN) {
                   2766:                                     merr_raise (M75);
                   2767:                                     return;
                   2768:                                 }
                   2769:                                 
                   2770:                                 if (a[i++] == '.') f = -1; /* do not insert comma after point */
                   2771: 
                   2772:                                 if (f-- == 0 && a[i] != EOL && a[i] != '.') {
                   2773:                                     f = 2;
                   2774:                                     tmp[j++] = ',';
                   2775:                                 }
                   2776: 
                   2777:                             }
                   2778: 
                   2779:                             stcpy (a, tmp);
                   2780: 
                   2781:                         }
                   2782: 
                   2783:                         if (EuroFlag && !standard) {    /* exchange point and comma */
                   2784:                             
                   2785:                             i = 0;
                   2786:                             
                   2787:                             while ((f = a[i]) != EOL) {
                   2788: 
                   2789:                                 if (f == '.') a[i] = ',';
                   2790:                                 if (f == ',') a[i] = '.';
                   2791: 
                   2792:                                 i++;
                   2793: 
                   2794:                             }
                   2795: 
                   2796:                         }
                   2797: 
                   2798:                         if (Tflag) {
                   2799: 
                   2800:                             i = stcpy (tmp, a);
                   2801:                             
                   2802:                             if (plusflag && tmp[0] != '-' && !IsZero) {
                   2803:                             
                   2804:                                 tmp[i] = '+';
                   2805:                                 tmp[++i] = EOL;
                   2806:                                 stcpy (a, tmp);
                   2807:                             
                   2808:                             } 
                   2809:                             else if (tmp[0] == '-') {
                   2810:                             
                   2811:                                 tmp[i] = minusflag ? SP : '-';
                   2812:                                 tmp[++i] = EOL;
                   2813:                                 stcpy (a, &tmp[1]);
                   2814:                             
                   2815:                             } 
                   2816:                             else {
                   2817:                             
                   2818:                                 tmp[i] = SP;
                   2819:                                 tmp[++i] = EOL;
                   2820:                                 stcpy (a, tmp);
                   2821:                             
                   2822:                             }
                   2823: 
                   2824:                             goto nxt_operator;
                   2825: 
                   2826:                         }
                   2827: 
                   2828:                         if (Pflag) {
                   2829: 
                   2830:                             i = stcpy (&tmp[1], a);
                   2831:                             
                   2832:                             if (a[0] == '-') {
                   2833:                             
                   2834:                                 a[0] = '(';
                   2835:                                 a[i] = ')';
                   2836:                                 a[++i] = EOL;
                   2837:                             
                   2838:                             } 
                   2839:                             else {
                   2840:                             
                   2841:                                 tmp[0] = SP;
                   2842:                                 tmp[++i] = SP;
                   2843:                                 tmp[++i] = EOL;
                   2844: 
                   2845:                                 stcpy (a, tmp);
                   2846:                             }
                   2847: 
                   2848:                             goto nxt_operator;
                   2849: 
                   2850:                         }
                   2851: 
                   2852:                         if (plusflag && a[0] != '-' && !IsZero) {
                   2853:                             stcpy (tmp, a);
                   2854:                             a[0] = '+';
                   2855:                             stcpy (&a[1], tmp);
                   2856:                         }
                   2857: 
                   2858:                         if (minusflag && a[0] == '-') {
                   2859:                             stcpy (tmp, &a[1]);
                   2860:                             stcpy (a, tmp);
                   2861:                         }
                   2862: 
                   2863:                     }
                   2864: 
                   2865:                     goto nxt_operator;
                   2866: 
                   2867: 
                   2868:                 case REVERSE:           /* $REVERSE */
                   2869: 
                   2870:                     if (f != 1) {
                   2871:                         merr_raise (FUNARG);
                   2872:                         return;
                   2873:                     }
                   2874: 
                   2875:                     i = stlen (a) - 1;
                   2876:                     j = i / 2;
                   2877:                     i = i - j;
                   2878:                     
                   2879:                     while (j >= 0) {
                   2880:                         f = a[j];
                   2881:                         a[j--] = a[i];
                   2882:                         a[i++] = f;
                   2883:                     }
                   2884: 
                   2885:                     goto nxt_operator;
                   2886: 
                   2887: 
                   2888:                 case 't':           /* $TEXT */
                   2889: 
                   2890:                     {
                   2891:                         long l1, rouoldc;
                   2892:                         short reload = FALSE;
                   2893: 
                   2894:                         if (f > 3) {
                   2895:                             merr_raise (FUNARG);
                   2896:                             return;
                   2897:                         }
                   2898: 
                   2899:                         i = 0;
                   2900:                         
                   2901:                         if (f > 1) {
                   2902:                             stcpy (tmp, argstck[arg + 1]);
                   2903:                             i = intexpr (tmp);
                   2904:                         }
                   2905: 
                   2906:                         if (a[0] == EOL) {
                   2907: 
                   2908:                             if (i < 0) {
                   2909:                                 merr_raise (ARGER);
                   2910:                                 return;
                   2911:                             }
                   2912: 
                   2913:                             /* $T(+0) returns routine name */
                   2914:                             if (i == 0) {
                   2915: 
                   2916:                                 if (f != 3) {
                   2917:                                     stcpy (a, rou_name);
                   2918:                                 } 
                   2919:                                 else {
                   2920:                                     stcpy (a, argstck[arg + 2]);
                   2921:                                 }                                
                   2922: 
                   2923:                                 goto nxt_operator;
                   2924: 
                   2925:                             }
                   2926: 
                   2927:                         }
                   2928: 
                   2929:                         if (f == 3) {
                   2930: 
                   2931:                             reload = TRUE;  /* load routine; */
                   2932:                             f = mcmnd;
                   2933:                             mcmnd = 'd';    /* make load use standard-path */
                   2934:                             
                   2935:                             stcpy (tmp, argstck[arg + 2]);
                   2936:                             
                   2937:                             rouoldc = roucur - rouptr;
                   2938:                             
                   2939:                             zload (tmp);
                   2940:                             
                   2941:                             mcmnd = f;
                   2942:                             
                   2943:                             if (merr () > OK) {
                   2944: 
                   2945:                                 zload (rou_name);
                   2946:                                 
                   2947:                                 if (merr () == NOPGM) {
                   2948:                                     ierr -= NOPGM; /* smw 15 nov 2023 TODO HUH?? */
                   2949:                                     *a = EOL;
                   2950: 
                   2951:                                     goto nxt_operator;
                   2952:                                 }
                   2953: 
                   2954:                                 return;
                   2955: 
                   2956:                             }
                   2957: 
                   2958:                         }
                   2959: 
                   2960:                         j = 0;
                   2961:                         f = 1;
                   2962:                         
                   2963:                         if (a[0] != EOL) {  /* 1st arg == label */
                   2964: 
                   2965:                             for (;;) {
                   2966:                         
                   2967:                                 if (j >= (rouend - rouptr)) {
                   2968:                                     a[0] = EOL;
                   2969:                                     goto t_end;
                   2970:                                 }
                   2971: 
                   2972:                                 l1 = j;
                   2973:                                 f = 0;
                   2974:                                 
                   2975:                                 while (*(rouptr + (++l1)) == a[f++]);
                   2976:                                 
                   2977:                                 if (a[--f] == EOL && (*(rouptr + l1) == TAB || *(rouptr + l1) == SP || *(rouptr + l1) == '(')) break;
                   2978: 
                   2979:                                 j += (UNSIGN (*(rouptr + j)) + 2);  /* skip line */
                   2980: 
                   2981:                             }
                   2982: 
                   2983:                             f = 0;
                   2984: 
                   2985:                         }
                   2986: 
                   2987:                         if (i > 0) {
                   2988: 
                   2989:                             while (f < i) {
                   2990: 
                   2991:                                 if ((j = j + (UNSIGN (*(rouptr + j))) + 2) >= (rouend - rouptr)) {
                   2992:                                     a[0] = EOL;
                   2993:                                     goto t_end;
                   2994:                                 }
                   2995:                                 
                   2996:                                 f++;
                   2997: 
                   2998:                             }
                   2999: 
                   3000:                         }
                   3001: 
                   3002:                         if (i < 0) {
                   3003: 
                   3004:                             j--;
                   3005:                             
                   3006:                             while (f != i) {
                   3007: 
                   3008:                                 while (*(rouptr + (--j)) != EOL && j >= 0);
                   3009:                                 
                   3010:                                 if (--f != i && j < 1) {
                   3011:                                     a[0] = EOL;
                   3012:                                     goto t_end;
                   3013:                                 }
                   3014: 
                   3015:                             }
                   3016: 
                   3017:                             j++;
                   3018: 
                   3019:                         }
                   3020: 
                   3021:                         f = (-1);
                   3022:                         j++;
                   3023: 
                   3024:                         while ((a[++f] = (*(rouptr + (j++)))) != EOL) {
                   3025:                             if (a[f] == TAB || a[f] == SP)
                   3026:                             break;
                   3027:                         }
                   3028: 
                   3029:                         if (j >= (rouend - rouptr - 1)) {
                   3030:                             a[0] = EOL;
                   3031:                         } 
                   3032:                         else {
                   3033: 
                   3034:                             a[f] = SP;
                   3035:                             
                   3036:                             while ((*(rouptr + j)) == TAB || (*(rouptr + j)) == SP) {
                   3037:                                 j++;
                   3038:                                 a[++f] = SP;
                   3039:                             }
                   3040: 
                   3041:                             stcpy (&a[++f], rouptr + j);
                   3042: 
                   3043:                         }
                   3044: 
                   3045: t_end:
                   3046:                         if (reload) {
                   3047:                             zload (rou_name);
                   3048:                             roucur = rouptr + rouoldc;
                   3049:                         }           /* reload routine; */
                   3050: 
                   3051:                     }
                   3052:                     
                   3053:                     goto nxt_operator;
                   3054: 
                   3055: 
                   3056:                 case TRANSLATE:     /* $TRANSLATE */
                   3057: 
                   3058:                     if (f > 3 || f < 2) {
                   3059:                         merr_raise (FUNARG);
                   3060:                         return;
                   3061:                     } 
                   3062: 
                   3063:                     {
                   3064:                         short   l1, m;
                   3065:                         char   *c;
                   3066: 
                   3067:                         b = argstck[arg + 1];
                   3068:                         c = argstck[arg + 2];
                   3069: 
                   3070:                         if (f == 2) {
                   3071:                             l1 = 0;
                   3072:                         }
                   3073:                         else {
                   3074:                             l1 = stlen (c); /* $l of 3rd arg */
                   3075:                         }
                   3076: 
                   3077:                         m = 0;
                   3078:                         f = 0;
                   3079:                         
                   3080:                         while ((ch = a[f++]) != EOL) {
                   3081: 
                   3082:                             j = 0;
                   3083:                             
                   3084:                             while (b[j] != EOL) {
                   3085: 
                   3086:                                 if (ch == b[j]) {
                   3087: 
                   3088:                                     if (j < l1) {
                   3089:                                         ch = c[j];
                   3090:                                     }
                   3091:                                     else {
                   3092:                                         ch = EOL;
                   3093:                                     }
                   3094: 
                   3095:                                     break;
                   3096: 
                   3097:                                 }
                   3098: 
                   3099:                                 j++;
                   3100: 
                   3101:                             }
                   3102: 
                   3103:                             if (ch != EOL) a[m++] = ch;
                   3104: 
                   3105:                         }
                   3106: 
                   3107:                         a[m] = EOL;
                   3108: 
                   3109:                     }
                   3110: 
                   3111:                     goto nxt_operator;
                   3112: 
                   3113:                 case TYPE:
                   3114:                 {
                   3115:                     char piv[255];
                   3116:                     
                   3117:                     if (f != 1) {
                   3118:                         merr_raise (FUNARG);
                   3119:                         return;
                   3120:                     }
                   3121: 
                   3122:                     stcpy (piv, argstck[arg]);
                   3123:                     stcnv_m2c (piv);
                   3124: 
                   3125:                     obj_get_attribute (piv, "CLASS", a);
                   3126:                     stcnv_c2m (a);
                   3127:                     
                   3128:                     goto nxt_operator;
                   3129:                 }
                   3130: 
                   3131:                 case INSTANCEOF:
                   3132:                 {
                   3133:                     char io_inst[255];
                   3134:                     char io_cls[255];
                   3135:                     short io_res;
                   3136:                     
                   3137:                     if (f != 2) {
                   3138:                         merr_raise (FUNARG);
                   3139:                         return;
                   3140:                     }
                   3141: 
                   3142:                     stcpy (io_inst, argstck[arg]);
                   3143:                     stcpy (io_cls, argstck[arg + 1]);
                   3144: 
                   3145:                     stcnv_m2c (io_inst);
                   3146:                     stcnv_m2c (io_cls);
                   3147: 
                   3148:                     io_res = obj_instance_of (io_inst, io_cls);
                   3149:                     
                   3150:                     intstr (a, (int) io_res);
                   3151:                     
                   3152:                     goto nxt_operator;
                   3153:                 }
                   3154:                 case 'r':           /* $RANDOM */
                   3155: 
                   3156:                     if (f != 1) {
                   3157:                         merr_raise (FUNARG);
                   3158:                         return;
                   3159:                     } 
                   3160: 
                   3161:                     {
                   3162:                         long ilong;
                   3163: 
                   3164:                         nrandom = (ran_a * nrandom + ran_b) % ran_c;
                   3165: 
                   3166:                         if ((i = intexpr (a)) < 1) {
                   3167:                             merr_raise (ARGER);
                   3168:                             return;
                   3169:                         }
                   3170: 
                   3171:                         ilong = (nrandom * i) / ran_c;
                   3172:                         
                   3173:                         if (ilong < 0) ilong += i;
                   3174: 
                   3175:                         lintstr (a, ilong);
                   3176: 
                   3177:                     }
                   3178: 
                   3179:                     goto nxt_operator;
                   3180: 
                   3181: 
                   3182:                 /* $VIEW */
                   3183:                 case 'v':
                   3184: 
                   3185:                     view_fun (f, a);
                   3186: 
                   3187:                     if (merr () > 0) return;
                   3188:                     
                   3189:                     goto nxt_operator;
                   3190: 
                   3191: 
                   3192:                 /* $ZBOOLEAN */
                   3193:                 case 'B':
                   3194: 
                   3195:                     if (f != 3) {
                   3196:                         merr_raise (FUNARG);
                   3197:                         return;
                   3198:                     }
                   3199: 
                   3200:                     i = 0;
                   3201:                     ch = intexpr (argstck[arg + 2]) % 16;
                   3202:                     b = argstck[arg + 1];
                   3203:                     
                   3204:                     if (*b == EOL) {
                   3205:                         *b = 0;
                   3206:                         b[1] = 0;
                   3207:                     }
                   3208: 
                   3209:                     f = 0;
                   3210:                     
                   3211:                     switch (ch) {
                   3212: 
                   3213:                         
                   3214:                         /* 1: A AND B */
                   3215:                         case 1:
                   3216:                         
                   3217:                             while (a[i] != EOL) {
                   3218: 
                   3219:                                 a[i] &= b[f];
                   3220:                                 i++;
                   3221: 
                   3222:                                 if (b[++f] == EOL) f = 0;
                   3223: 
                   3224:                             }
                   3225: 
                   3226:                             break;
                   3227: 
                   3228: 
                   3229:                         /* 7: A OR B */                    
                   3230:                         case 7:
                   3231:                         
                   3232:                             while (a[i] != EOL) {
                   3233: 
                   3234:                                 a[i] |= b[f];
                   3235:                                 i++;
                   3236:                                 
                   3237:                                 if (b[++f] == EOL) f = 0;
                   3238: 
                   3239:                             }
                   3240: 
                   3241:                             break;
                   3242:                         
                   3243: 
                   3244:                         /* 6: A XOR B */
                   3245:                         case 6:
                   3246:                         
                   3247:                             while (a[i] != EOL) {
                   3248:                                 
                   3249:                                 a[i] = (a[i] ^ b[f]) & (eightbit ? 0377 : 0177);
                   3250:                                 i++;
                   3251: 
                   3252:                                 if (b[++f] == EOL) f = 0;
                   3253: 
                   3254:                             }
                   3255: 
                   3256:                             break;
                   3257:                         
                   3258: 
                   3259:                         /* 14: A NAND B */
                   3260:                         case 14:
                   3261:                         
                   3262:                             while (a[i] != EOL) {
                   3263:                                 
                   3264:                                 a[i] = ~(a[i] & b[f]) & (eightbit ? 0377 : 0177);
                   3265:                                 i++;
                   3266: 
                   3267:                                 if (b[++f] == EOL) f = 0;
                   3268: 
                   3269:                             }
                   3270: 
                   3271:                             break;
                   3272:                         
                   3273: 
                   3274:                         /* 8: A NOR B */
                   3275:                         case 8:
                   3276:                         
                   3277:                             while (a[i] != EOL) {
                   3278: 
                   3279:                                 a[i] = ~(a[i] | b[f]) & (eightbit ? 0377 : 0177);
                   3280:                                 i++;
                   3281: 
                   3282:                                 if (b[++f] == EOL) f = 0;
                   3283: 
                   3284:                             }
                   3285: 
                   3286:                             break;
                   3287:                         
                   3288: 
                   3289:                         /* 9: A EQUALS B */
                   3290:                         case 9:
                   3291:                         
                   3292:                             while (a[i] != EOL) {
                   3293: 
                   3294:                                 a[i] = ~(a[i] ^ b[f]) & (eightbit ? 0377 : 0177);
                   3295:                                 i++;
                   3296: 
                   3297:                                 if (b[++f] == EOL) f = 0;
                   3298: 
                   3299:                             }
                   3300: 
                   3301:                             break;
                   3302:                         
                   3303: 
                   3304:                         /* 2: A AND NOT B */
                   3305:                         case 2:
                   3306:                         
                   3307:                             while (a[i] != EOL) {
                   3308: 
                   3309:                                 a[i] &= ~b[f];
                   3310:                                 i++;
                   3311:                                 
                   3312:                                 if (b[++f] == EOL) f = 0;
                   3313: 
                   3314:                             }
                   3315: 
                   3316:                             break;
                   3317:                         
                   3318: 
                   3319:                         /* 11: A OR NOT B */
                   3320:                         case 11:
                   3321:                         
                   3322:                             while (a[i] != EOL) {
                   3323:                                 
                   3324:                                 a[i] = (a[i] | ~b[f]) & (eightbit ? 0377 : 0177);
                   3325:                                 i++;
                   3326: 
                   3327:                                 if (b[++f] == EOL) f = 0;
                   3328:                             
                   3329:                             }
                   3330:                             
                   3331:                             break;
                   3332:                         
                   3333: 
                   3334:                         /* 13: NOT A OR B */
                   3335:                         case 13:
                   3336:                         
                   3337:                             while (a[i] != EOL) {
                   3338: 
                   3339:                                 a[i] = (~a[i] | b[f]) & (eightbit ? 0377 : 0177);
                   3340:                                 i++;
                   3341:                                 
                   3342:                                 if (b[++f] == EOL) f = 0;
                   3343:                             
                   3344:                             }
                   3345:                             
                   3346:                             break;
                   3347:                         
                   3348: 
                   3349:                         /* 4: NOT A AND B */
                   3350:                         case 4:
                   3351:                         
                   3352:                             while (a[i] != EOL) {
                   3353: 
                   3354:                                 a[i] = ~a[i] & b[f];
                   3355:                                 i++;
                   3356:                                 
                   3357:                                 if (b[++f] == EOL) f = 0;
                   3358: 
                   3359:                             }
                   3360: 
                   3361:                             break;
                   3362:                         
                   3363: 
                   3364:                         /* 5: B */
                   3365:                         case 5:
                   3366:                         
                   3367:                             while (a[i] != EOL) {
                   3368: 
                   3369:                                 a[i++] = b[f];
                   3370:                                 
                   3371:                                 if (b[++f] == EOL) f = 0;
                   3372:                             
                   3373:                             }
                   3374:                             
                   3375:                             break;
                   3376:                         
                   3377: 
                   3378:                         /* 10: NOT B */
                   3379:                         case 10:
                   3380:                         
                   3381:                             while (a[i] != EOL) {
                   3382:                                 
                   3383:                                 a[i++] = ~b[f] & 0177;
                   3384:                                 
                   3385:                                 if (b[++f] == EOL) f = 0;
                   3386:                             
                   3387:                             }
                   3388:                             
                   3389:                             break;
                   3390:                         
                   3391: 
                   3392:                         /* 12: NOT A */
                   3393:                         case 12:
                   3394:                         
                   3395:                             while (a[i] != EOL) {
                   3396: 
                   3397:                                 a[i] = ~a[i] & 0177;
                   3398:                                 i++;
                   3399: 
                   3400:                                 if (b[++f] == EOL) f = 0;
                   3401: 
                   3402:                             }
                   3403: 
                   3404:                             break;
                   3405: 
                   3406: 
                   3407:                         /* 0: always FALSE */
                   3408:                         case 0:
                   3409:                         
                   3410:                             while (a[i] != EOL)
                   3411:                             a[i++] = 0;
                   3412:                             break;
                   3413: 
                   3414: 
                   3415:                         /* 15: always TRUE */
                   3416:                         case 15:
                   3417:                         
                   3418:                             ch = (char) 0177;
                   3419:                             while (a[i] != EOL)
                   3420:                             a[i++] = ch;
                   3421:                             /* 3: A */
                   3422: 
                   3423:                     }
                   3424: 
                   3425:                     goto nxt_operator;
                   3426: 
                   3427: 
                   3428:                 /* ZCRC "cyclic redundancy check" check sums */
                   3429:                 case ZCRC:
                   3430: 
                   3431:                     if (f == 1) {
                   3432:                         f = 0;          /* missing 2nd arg defaults to "0" */
                   3433:                     }
                   3434:                     else {
                   3435: 
                   3436:                         if (f != 2) {
                   3437:                             merr_raise (FUNARG);
                   3438:                             return;
                   3439:                         }
                   3440:                         
                   3441:                         if ((f = intexpr (argstck[arg + 1])) != 0 && f != 1) {
                   3442:                             merr_raise (ARGER);
                   3443:                             return;
                   3444:                         }
                   3445: 
                   3446:                     }
                   3447: 
                   3448:                     i = 0;
                   3449:                     
                   3450:                     if (f == 0) {       /* XORing */
                   3451: 
                   3452:                         f = 0;
                   3453:                     
                   3454:                         while (a[i] != EOL) f ^= a[i++];
                   3455: 
                   3456:                         f = f & 0377;
                   3457: 
                   3458:                     } 
                   3459:                     else {            /* ASCII sum */
                   3460: 
                   3461:                         f = 0;
                   3462:                     
                   3463:                         while (a[i] != EOL) f += a[i++];
                   3464: 
                   3465:                     }
                   3466: 
                   3467:                     intstr (a, f);
                   3468:                     
                   3469:                     goto nxt_operator;
                   3470: 
                   3471: 
                   3472:                 /* $ZFUNCTIONKEY */
                   3473:                 case 'F':
                   3474: 
                   3475:                     if (f != 1) {
                   3476:                         merr_raise (FUNARG);
                   3477:                         return;
                   3478:                     }
                   3479:                     
                   3480:                     if ((i = intexpr (a)) < 1 || i > 44) {
                   3481:                         merr_raise (FUNARG);
                   3482:                         return;
                   3483:                     }
                   3484:                     
                   3485:                     stcpy (a, zfunkey[i - 1]);
                   3486:                     
                   3487:                     goto nxt_operator;
                   3488: 
                   3489: 
                   3490:                 case 'P':           /* $ZPIECE */
                   3491: 
                   3492:                     /* Similar to $PIECE                                    */
                   3493:                     /* The difference is, that stuff within quotes is not   */
                   3494:                     /* counted as delimiter. nor is stuff within brackets   */
                   3495: 
                   3496:                     {
                   3497:                         short l, l1, m, n;
                   3498:                         short quo = 0;    /* quotes */
                   3499:                         short bra = 0;    /* brackets */
                   3500:                         char ch0;
                   3501: 
                   3502:                         b = argstck[arg + 1];
                   3503:                         l1 = b - a - 1;     /* length of 1st argument */
                   3504: 
                   3505:                         switch (f) {
                   3506:                             
                   3507: 
                   3508:                             case 2:
                   3509: 
                   3510:                                 f = 1;
                   3511:                                 l = 1;
                   3512:                             
                   3513:                                 break;
                   3514:                             
                   3515: 
                   3516:                             case 3:
                   3517:                                 
                   3518:                                 if ((f = intexpr (argstck[arg + 2])) <= 0) {
                   3519:                                     a[0] = EOL;
                   3520:                                     goto nxt_operator;
                   3521:                                 }
                   3522: 
                   3523:                                 if (merr () == MXNUM) {
                   3524:                                     if (f >= 0) f = 256;
                   3525:                                     merr_raise (OK);
                   3526:                                 }
                   3527:                                 
                   3528:                                 l = f;
                   3529:                                 break;
                   3530:                             
                   3531: 
                   3532:                             case 4:
                   3533:                                 
                   3534:                                 l = intexpr (argstck[arg + 3]);
                   3535:                                 
                   3536:                                 if (merr () == MXNUM) {
                   3537:                                     
                   3538:                                     if (l >= 0) l = 256;
                   3539:                                 
                   3540:                                     merr_raise (OK);
                   3541:                                 
                   3542:                                 }
                   3543: 
                   3544:                                 if ((f = intexpr (argstck[arg + 2])) <= 0) f = 1;
                   3545: 
                   3546:                                 if (merr () == MXNUM) {
                   3547:                                     
                   3548:                                     if (f >= 0) f = 256;
                   3549:                                     
                   3550:                                     merr_raise (OK);
                   3551:                                 
                   3552:                                 }
                   3553:                                 
                   3554:                                 if (f > l) {
                   3555:                                     a[0] = EOL;
                   3556:                                     goto nxt_operator;
                   3557:                                 }
                   3558: 
                   3559:                                 break;
                   3560: 
                   3561: 
                   3562:                             default:
                   3563:                             
                   3564:                                 merr_raise (FUNARG);
                   3565:                                 return;
                   3566: 
                   3567:                         }
                   3568: 
                   3569:                         i = 0;
                   3570:                         m = 0;
                   3571:                         ch = 0;
                   3572: 
                   3573:                         while (b[ch] != EOL) ch++;       /* $l of 2nd arg */
                   3574: 
                   3575:                         if (ch == 1) {
                   3576: 
                   3577:                             ch = b[0];
                   3578:                             j = 1;
                   3579:                             
                   3580:                             if (f > 1) {
                   3581: 
                   3582:                                 while (i < l1) {    /* scan 1st string ... */
                   3583:                                     
                   3584:                                     ch0 = a[i++];
                   3585:                                     
                   3586:                                     if (ch != '"') {
                   3587: 
                   3588:                                         if (ch0 == '"') {
                   3589:                                             toggle (quo);
                   3590:                                             continue;
                   3591:                                         }
                   3592: 
                   3593:                                         if (quo) continue;
                   3594: 
                   3595:                                     }
                   3596: 
                   3597:                                     if (ch0 == '(') bra++;
                   3598:                                     if (ch0 == ')') bra--;
                   3599: 
                   3600:                                     if (ch0 != ch) continue;
                   3601:                                     if (bra > 1) continue;
                   3602:                                     if ((ch0 != '(') && bra) continue;
                   3603:                                     
                   3604:                                     if (++j == f) {
                   3605:                                         m = i;
                   3606:                                         goto zp10;
                   3607:                                     }
                   3608: 
                   3609:                                 }
                   3610: 
                   3611:                                 /* if(j<f) */ 
                   3612:                                 a[0] = EOL;
                   3613: 
                   3614:                                 goto nxt_operator;
                   3615: 
                   3616:                             }
                   3617: 
                   3618: zp10:
                   3619: 
                   3620:                             for (; i < l1; i++) {
                   3621: 
                   3622:                                 ch0 = a[i];
                   3623:                                 
                   3624:                                 if (ch != '"') {
                   3625: 
                   3626:                                     if (ch0 == '"') {
                   3627:                                         toggle (quo);
                   3628:                                         continue;
                   3629:                                     }
                   3630:                                     
                   3631:                                     if (quo) continue;
                   3632: 
                   3633:                                 }
                   3634: 
                   3635:                                 if (ch0 == '(') bra++;
                   3636:                                 if (ch0 == ')') bra--;
                   3637:                                 if (ch0 != ch) continue;
                   3638:                                 if (bra > 1) continue;
                   3639:                                 if ((ch0 != '(') && bra) continue;
                   3640: 
                   3641:                                 if (j == l) {
                   3642:                                     a[i] = EOL;
                   3643:                                     break;
                   3644:                                 }
                   3645: 
                   3646:                                 j++;
                   3647: 
                   3648:                             }
                   3649: 
                   3650:                             if (m > 0) stcpy (a, &a[m]);
                   3651: 
                   3652:                             goto nxt_operator;
                   3653: 
                   3654:                         }
                   3655: 
                   3656:                         if (ch == 0) {
                   3657:                             a[0] = EOL;
                   3658:                             goto nxt_operator;
                   3659:                         }           /* 2nd arg is empty */
                   3660: 
                   3661:                         /* else (ch>1) $Length of Delimiter>1 */
                   3662:                         n = 1;
                   3663: 
                   3664:                         if (f > 1) {
                   3665: 
                   3666:                             while (i < l1) {    /* scan 1st string ... */
                   3667: 
                   3668:                                 j = 0;
                   3669:                             
                   3670:                                 if ((ch0 = a[i]) == '"') {
                   3671:                                     toggle (quo);
                   3672:                                     i++;
                   3673:                             
                   3674:                                     continue;
                   3675:                                 }
                   3676:                             
                   3677:                                 if (quo) {
                   3678:                                     i++;
                   3679:                                     continue;
                   3680:                                 }
                   3681:                                 
                   3682:                                 if (ch0 == '(') {
                   3683:                                     bra++;
                   3684:                                     i++;
                   3685:                                 
                   3686:                                     continue;
                   3687:                                 }
                   3688:                                 
                   3689:                                 if (ch0 == ')') {
                   3690:                                     bra--;
                   3691:                                     i++;
                   3692:                                 
                   3693:                                     continue;
                   3694:                                 }
                   3695: 
                   3696:                                 if (bra) {
                   3697:                                     i++;
                   3698:                                     continue;
                   3699:                                 }
                   3700: 
                   3701: zp20:
                   3702:                                 if (a[i + j] != b[j]) {
                   3703:                                     i++;
                   3704:                                     continue;
                   3705:                                 }       /* ... for occurence of 2nd */
                   3706:                                 
                   3707:                                 if (++j < ch) goto zp20;
                   3708:                                 
                   3709:                                 i += ch;    /* skip delimiter */
                   3710:                                 
                   3711:                                 if (++n == f) {
                   3712:                                     m = i;
                   3713:                                     goto zp30;
                   3714:                                 }
                   3715:                             }
                   3716:                             
                   3717:                             /* if(n<f) */ a[0] = EOL;
                   3718:                             
                   3719:                             goto nxt_operator;
                   3720:                         }
                   3721: 
                   3722: zp30:
                   3723: 
                   3724:                         while (i < l1) {
                   3725:                             
                   3726:                             j = 0;
                   3727:                             
                   3728:                             if ((ch0 = a[i]) == '"') {
                   3729:                                 toggle (quo);
                   3730:                                 i++;
                   3731:                             
                   3732:                                 continue;
                   3733:                             }
                   3734:                             
                   3735:                             if (quo) {
                   3736:                                 i++;
                   3737:                                 continue;
                   3738:                             }
                   3739: 
                   3740:                             if (ch0 == '(') {
                   3741:                                 bra++;
                   3742:                                 i++;
                   3743:                             
                   3744:                                 continue;
                   3745:                             }
                   3746: 
                   3747:                             if (ch0 == ')') {
                   3748:                                 bra--;
                   3749:                                 i++;
                   3750:                             
                   3751:                                 continue;
                   3752:                             }
                   3753: 
                   3754:                             if (bra) {
                   3755:                                 i++;
                   3756:                                 continue;
                   3757:                             }
                   3758: 
                   3759: zp40:                       
                   3760:                             if (a[i + j] != b[j]) {
                   3761:                                 i++;
                   3762:                                 continue;
                   3763:                             }
                   3764:                             
                   3765:                             if (++j < ch) goto zp40;
                   3766:                                 
                   3767:                             if (n == l) {
                   3768:                                 a[i] = EOL;
                   3769:                                 break;
                   3770:                             }           /* last $zpiece: done! */
                   3771:                             
                   3772:                             i += ch;
                   3773:                             n++;
                   3774: 
                   3775:                         }
                   3776: 
                   3777:                         if (m > 0) stcpy (a, &a[m]);
                   3778: 
                   3779:                         goto nxt_operator;
                   3780:                     
                   3781:                     }
                   3782: 
                   3783:                 case 'L':           /* $ZLENGTH */
                   3784: 
                   3785:                     /* Similar to $LENGTH with two arguments                */
                   3786:                     /* The difference is, that stuff within quotes is not   */
                   3787:                     /* counted as delimiter. nor is stuff within brackets   */
                   3788: 
                   3789:                     if (f != 2) {
                   3790:                         merr_raise (FUNARG);
                   3791:                         return;
                   3792:                     }
                   3793: 
                   3794:                     i = 0;
                   3795:                     j = 0;
                   3796:                     
                   3797:                     b = argstck[arg + 1];
                   3798:                     
                   3799:                     if ((f = stlen (b))) {
                   3800:                         int     quo,
                   3801:                         bra,
                   3802:                         ch0;
                   3803: 
                   3804:                         quo = 0;
                   3805:                         bra = 0;
                   3806: 
                   3807:                         if (f == 1) {       /* length of delimiter =1 char */
                   3808: 
                   3809:                             ch = b[0];
                   3810:                             j = 0;
                   3811:                         
                   3812:                             for (;;) {
                   3813: 
                   3814:                                 ch0 = a[i++];
                   3815: 
                   3816:                                 if (ch0 == EOL) break;
                   3817:                                 
                   3818:                                 if (ch != '"') {
                   3819:                                     
                   3820:                                     if (ch0 == '"') {
                   3821:                                         toggle (quo);
                   3822:                                         continue;
                   3823:                                     }
                   3824: 
                   3825:                                     if (quo) continue;
                   3826: 
                   3827:                                 }
                   3828: 
                   3829:                                 if (ch0 == '(') bra++;
                   3830:                                 if (ch0 == ')') bra--;
                   3831:                                 if (ch0 != ch) continue;
                   3832:                                 if (bra > 1) continue;
                   3833:                                 if ((ch0 != '(') && bra) continue;
                   3834:                                 
                   3835:                                 j++;
                   3836:                             }
                   3837: 
                   3838:                             
                   3839:                             j++;
                   3840:                             
                   3841:                         } 
                   3842:                         else {
                   3843: 
                   3844:                             int n;
                   3845: 
                   3846:                             j = 1;
                   3847: 
                   3848:                             for (;;) {
                   3849: 
                   3850:                                 n = 0;
                   3851: 
                   3852:                                 if ((ch0 = a[i]) == '"') {                                
                   3853:                                     toggle (quo);
                   3854:                                     i++;
                   3855:                                     
                   3856:                                     continue;
                   3857:                                 }
                   3858: 
                   3859:                                 if (ch0 == EOL) break;
                   3860: 
                   3861:                                 if (quo) {
                   3862:                                     i++;
                   3863:                                     continue;
                   3864:                                 }
                   3865: 
                   3866:                                 if (ch0 == '(') {
                   3867:                                     bra++;
                   3868:                                     i++;
                   3869:                                 
                   3870:                                     continue;
                   3871:                                 }
                   3872: 
                   3873:                                 if (ch0 == ')') {
                   3874:                                     bra--;
                   3875:                                     i++;
                   3876:                                     
                   3877:                                     continue;
                   3878:                                 }
                   3879: 
                   3880:                                 if (bra) {
                   3881:                                     i++;
                   3882:                                     continue;
                   3883:                                 }
                   3884: 
                   3885: zl10:                           
                   3886: 
                   3887:                                 if (a[i + n] != b[n]) {
                   3888:                                     i++;
                   3889:                                     continue;
                   3890:                                 }
                   3891: 
                   3892:                                 if (++n < f) goto zl10;
                   3893:                                 
                   3894:                                 i += f;     /* skip delimiter */
                   3895:                                 j++;
                   3896:                             
                   3897:                             }
                   3898:                         }
                   3899:                     }
                   3900: 
                   3901:                     intstr (a, j);
                   3902:                     goto nxt_operator;
                   3903: 
                   3904:                 case ZLSD:          /* $ZLSD levenshtein function */
                   3905:                     
                   3906:                     if (f != 2) {
                   3907:                         merr_raise (FUNARG);
                   3908:                         return;
                   3909:                     }
                   3910: 
                   3911:                     f = levenshtein (a, argstck[arg + 1]);
                   3912:                     intstr (a, f);
                   3913:                     
                   3914:                     goto nxt_operator;
                   3915: 
                   3916: 
                   3917:                 /* $ZKEY */
                   3918:                 /* transform a string to be used as a key in an array so   */
                   3919:                 /* the result string will collate in the desired way       */
                   3920:                 /* according to the production rule specified by VIEW 93   */
                   3921:                 case 'K':
                   3922:                     
                   3923:                     if (f == 2) {
                   3924:                         zkey (a, intexpr (argstck[arg + 1]));
                   3925:                     }
                   3926:                     else if (f == 1) {
                   3927:                         zkey (a, v93);
                   3928:                     }
                   3929:                     else {
                   3930:                         merr_raise (FUNARG);
                   3931:                     }
                   3932:                     
                   3933:                     if (merr () > OK) return;
                   3934: 
                   3935:                     goto nxt_operator;
                   3936: 
                   3937: 
                   3938:                 /* $ZREPLACE */
                   3939:                 /* Replace in first argument non overlapping occurences    */
                   3940:                 /* of the second argument by the third argument.           */
                   3941:                 /* if the third argument is missing, assume it to be empty */
                   3942:                 case 'R':
                   3943:                     
                   3944:                     if (f == 3) {
                   3945:                         zreplace (a, argstck[arg + 1], argstck[arg + 2]);
                   3946:                     }
                   3947:                     else if (f == 2) {
                   3948:                         zreplace (a, argstck[arg + 1], "\201");
                   3949:                     }
                   3950:                     else {
                   3951:                         merr_raise (FUNARG);
                   3952:                     }
                   3953: 
                   3954:                     if (merr () > OK) return;
                   3955: 
                   3956:                     goto nxt_operator;
                   3957: 
                   3958: 
                   3959:                 /* $ZSYNTAX */
                   3960: 
                   3961:                 case 'S':
                   3962: 
                   3963:                     if (f != 1) {
                   3964:                         merr_raise (FUNARG);
                   3965:                         return;
                   3966:                     }
                   3967: 
                   3968:                     zsyntax (a);
                   3969:                     
                   3970:                     if (merr () > OK) return;
                   3971: 
                   3972:                     goto nxt_operator;
                   3973: 
                   3974: 
                   3975:                 /* $ZTIME()/$ZDATE() */
                   3976:                 case 'T':
                   3977:                 case 'D':
                   3978: 
                   3979:                     {
                   3980:                         time_t unix_epoch;
                   3981:                         char *horo_time = a;
                   3982:                         char fmt_string[120];
                   3983:                         struct tm *zdate_time;                        
                   3984:                         
                   3985:                         if (f > 2) {
                   3986:                             merr_raise (FUNARG);
                   3987:                             return;
                   3988:                         }
                   3989: 
                   3990:                         if (!is_horolog (horo_time)) {
                   3991:                             merr_raise (ZINVHORO);
                   3992:                             return;
                   3993:                         }
                   3994:                         
                   3995:                         if (f == 2) {
                   3996:                             stcpy (fmt_string, argstck[arg + 1]);
                   3997:                         }
                   3998:                         else if (f == 1) {
                   3999:                             char zdf_key[50];
                   4000: 
                   4001:                             switch (i) {
                   4002:                                 
                   4003:                                 case 'D':
                   4004:                                     sprintf (zdf_key, "^$JOB\202%d\202ZDATE_FORMAT\201", pid);
                   4005:                                     break;
                   4006: 
                   4007:                                 case 'T':
                   4008:                                     sprintf (zdf_key, "^$JOB\202%d\202ZTIME_FORMAT\201", pid);
                   4009:                                     break;
                   4010: 
                   4011:                             }
                   4012:                                                                 
                   4013:                             ssvn (get_sym, zdf_key, fmt_string);
                   4014:                         }
                   4015:                         
                   4016:                         stcnv_m2c (fmt_string);
                   4017:                                 
                   4018:                         unix_epoch = horolog_to_unix (horo_time);
                   4019:                         zdate_time = localtime (&unix_epoch);
                   4020: 
                   4021:                         strftime (a, 255, fmt_string, zdate_time);
                   4022:                         
                   4023:                         stcnv_c2m (a);
                   4024: 
                   4025:                         goto nxt_operator;
                   4026:                     }
                   4027:                     
                   4028: 
                   4029:                 /* $ZHOROLOG() */
                   4030:                 /* convert string date to $H format */
                   4031:                 case 'H':
                   4032:                     {
                   4033:                         char *time_str = a;
                   4034:                         char *fmt_string = argstck[arg + 1];
                   4035:                         struct tm zhoro_tm;
                   4036:                         unsigned long ilong;
                   4037:                         unsigned long ilong1;
                   4038:                         
                   4039:                         if (f != 2) {
                   4040:                             merr_raise (FUNARG);
                   4041:                             return;
                   4042:                         }
                   4043: 
                   4044:                         strptime (time_str, fmt_string, &zhoro_tm);
                   4045: 
                   4046:                         ilong1 = mktime (&zhoro_tm) + tzoffset;
                   4047:                         ilong = ilong1 / 86400;
                   4048: 
                   4049:                         lintstr (a, ilong + 47117);
                   4050:                         i = stlen (a);
                   4051: 
                   4052:                         a[i++] = ',';
                   4053:                         ilong = ilong1 - (ilong * 86400) + 43200;
                   4054: 
                   4055:                         lintstr (&a[i], ilong);                       
                   4056: 
                   4057:                         goto nxt_operator;
                   4058:                         
                   4059:                     }
                   4060:                     
                   4061:                     
                   4062:                 case GETX:          /* dummy function for implicit $GET */
                   4063: 
                   4064:                     /* un-stack $ZREFERENCE and $ZLOCAL */
                   4065:                     stcpy (zref, refsav[--refsx]);
                   4066:                     stcpy (zloc, refsav[refsx] + 256);
                   4067:                     
                   4068:                     free (refsav[refsx]);
                   4069:                 
                   4070:                 
                   4071:                 case GET:           /* dummy function for $GET with two args */
                   4072:                 
                   4073:                     goto nxt_operator;
                   4074: 
                   4075:                 
                   4076:                 case 'E':           /* ZEDIT */
                   4077:                 
                   4078:                     if (f > 4) {
                   4079:                         merr_raise (FUNARG);
                   4080:                         return;
                   4081:                     } 
                   4082: 
                   4083:                     {
                   4084: 
                   4085:                         int k, l, rev, esc;
                   4086: 
                   4087:                         if (f == 1) {
                   4088:                             rev = TRUE;
                   4089:                             goto reverse;
                   4090:                         }
                   4091: 
                   4092:                         j = (f == 4 ? intexpr (argstck[arg + 3]) : 1);  /* type of action */
                   4093:                         
                   4094:                         if ((rev = j < 0)) j = (-j);
                   4095:                         if ((esc = j / 10) == 1 || esc == 2) j = j % 10;
                   4096: 
                   4097:                         if (j < 1 || j > 3) {
                   4098:                             merr_raise (ARGER);
                   4099:                             return;
                   4100:                         }
                   4101: 
                   4102:                         f = (f >= 3 ? intexpr (argstck[arg + 2]) : 0);  /* target length */
                   4103:                         
                   4104:                         if (f > 255) merr_raise (ARGER);
                   4105:                         
                   4106:                         if (merr () > OK) return;
                   4107: 
                   4108:                         if (esc == 1) {     /* remove ESC-Sequences */
                   4109:                             
                   4110:                             stcpy (tmp, a);
                   4111:                             
                   4112:                             i = 0;
                   4113:                             k = 0;
                   4114:                             l = 1;
                   4115:                             esc = 0;
                   4116:                             
                   4117:                             while ((a[k] = tmp[i++]) != EOL) {
                   4118: 
                   4119:                                 if (l) {
                   4120:                                     if (a[k] != ESC) {
                   4121:                                         k++;
                   4122:                                         continue;
                   4123:                                     }
                   4124:                             
                   4125:                                     if ((a[k] = tmp[i++]) != '[') continue;
                   4126: 
                   4127:                                     l = 0;
                   4128:                                     
                   4129:                                     continue;
                   4130:                                 }
                   4131: 
                   4132:                                 if (a[k] >= '@') l = 1;
                   4133: 
                   4134:                             }
                   4135: 
                   4136:                         }
                   4137: 
                   4138:                         /* anything to be done ??? */
                   4139:                         if (argstck[arg + 1][0] == EOL) goto reverse;
                   4140:                         
                   4141:                         stcpy (tmp, argstck[arg + 1]);
                   4142:                         
                   4143:                         if (j != 1) {       /* remove leading characters */
                   4144:                             
                   4145:                             i = 0;
                   4146:                             k = 0;
                   4147:                             
                   4148:                             while (a[i] != EOL) {
                   4149: 
                   4150:                                 if (a[i] == tmp[k]) {
                   4151:                                     i++;
                   4152:                                     k = 0;
                   4153:                                 
                   4154:                                     continue;
                   4155:                                 }
                   4156:                                 
                   4157:                                 if (tmp[k++] == EOL) break;
                   4158:                             
                   4159:                             }
                   4160:                             
                   4161:                             if (i) stcpy (a, &a[i]);
                   4162: 
                   4163:                         }
                   4164: 
                   4165:                         if (j != 3) {       /* remove trailing characters */
                   4166: 
                   4167:                             i = stlen (a) - 1;
                   4168:                             k = 0;
                   4169:                         
                   4170:                             while (i >= 0) {
                   4171:                                 
                   4172:                                 if (a[i] == tmp[k]) {
                   4173:                                     i--;
                   4174:                                     k = 0;
                   4175: 
                   4176:                                     continue;
                   4177:                                 }
                   4178:                                 
                   4179:                                 if (tmp[k++] == EOL) break;
                   4180: 
                   4181:                             }
                   4182: 
                   4183:                             a[i + 1] = EOL;
                   4184: 
                   4185:                         }
                   4186: 
                   4187:                         i = stlen (a);
                   4188:                         
                   4189:                         if ((f -= i) > 0) { /* characters to append */
                   4190:                             
                   4191:                             if (esc == 2) { /* ignore ESC-Sequences */
                   4192:                                 
                   4193:                                 k = 0;
                   4194:                                 l = 1;
                   4195: 
                   4196:                                 while (a[k] != EOL) {
                   4197: 
                   4198:                                     if (l) {
                   4199: 
                   4200:                                         if (a[k++] == ESC) {
                   4201:                                         
                   4202:                                             f += 2;
                   4203:                                             
                   4204:                                             if (a[k++] == '[') l = 0;
                   4205:                                         
                   4206:                                         }
                   4207:                                     } 
                   4208:                                     else {
                   4209:                                     
                   4210:                                         f++;
                   4211:                                     
                   4212:                                         if (a[k++] >= '@') l = 1;
                   4213: 
                   4214:                                     }
                   4215: 
                   4216:                                 }
                   4217: 
                   4218:                             }
                   4219: 
                   4220:                             k = 0;
                   4221:                             
                   4222:                             if (j == 1) {
                   4223:                                 k = f;
                   4224:                                 f = 0;
                   4225:                             }
                   4226: 
                   4227:                             if (j == 2) {
                   4228:                                 k = f - f / 2;
                   4229:                                 f -= k;
                   4230:                             }
                   4231: 
                   4232:                             l = stlen (tmp);
                   4233:                             
                   4234:                             if (k) {        /* append on right side */
                   4235:                                 
                   4236:                                 a[k += i] = EOL;
                   4237:                                 j = l;
                   4238:                                 
                   4239:                                 while (--k >= i) {
                   4240: 
                   4241:                                     a[k] = tmp[--j];
                   4242:                                     
                   4243:                                     if (j <= 0) j = l;
                   4244: 
                   4245:                                 }
                   4246: 
                   4247:                             }
                   4248: 
                   4249:                             if (f) {        /* append on left side */
                   4250:                                 
                   4251:                                 i = 0;
                   4252:                                 
                   4253:                                 while (l < f) tmp[l++] = tmp[i++];
                   4254: 
                   4255:                                 stcpy (&tmp[l], a);
                   4256:                                 stcpy (a, tmp);
                   4257: 
                   4258:                             }
                   4259: 
                   4260:                         }
                   4261: 
                   4262: reverse: 
                   4263:                         
                   4264:                         if (rev) {
                   4265:                             
                   4266:                             i = stlen (a) - 1;
                   4267:                             j = 0;
                   4268:                             f = i / 2;
                   4269:                         
                   4270:                             while (j <= f) {
                   4271:                                 k = a[j];
                   4272:                                 a[j++] = a[i];
                   4273:                                 a[i--] = k;
                   4274:                             }
                   4275: 
                   4276:                         }
                   4277: 
                   4278:                     }
                   4279: 
                   4280:                     goto nxt_operator;
                   4281: 
                   4282:                 default:
                   4283:                     merr_raise (ILLFUN);
                   4284:                     return;
                   4285: 
                   4286: 
                   4287:             }
                   4288: 
                   4289:             /* end of function evaluation section */
                   4290: 
                   4291: nxt_operator:
                   4292: 
                   4293:             if (spx > 0 && (f = op_stck[spx]) != ARRAY && f != '(') {
                   4294:                 goto nxt_expr;
                   4295:             }
                   4296:             /* push answer */
                   4297: 
                   4298:             op_stck[++spx] = OPERAND;
                   4299:             codptr++;
                   4300:             
                   4301:             goto nextchr;
                   4302: 
                   4303: 
                   4304:     case '$':               /* scan function name convert upper to lower */
                   4305: 
                   4306:         if (op_stck[spx] == OPERAND) goto m_operator;
                   4307:         if ((f = *++codptr) >= 'A' && f <= 'Z') f += 32;
                   4308: 
                   4309:         if (f == 'z' && standard) {
                   4310:             merr_raise (NOSTAND);
                   4311:             return;
                   4312:         }
                   4313: 
                   4314:         if (f == '$' || f == '%') {         /* extrinsic function/extrinsic variable */
                   4315:             
                   4316:             zexflag = FALSE;
                   4317: 
                   4318: extra_fun:
                   4319: 
                   4320: 
                   4321:             {
                   4322:                 short   savmcmnd, savsetp;    /* stuff to be saved */
                   4323:                 char    savarnam[256];
                   4324:                 char   *savdofr;
                   4325:                 long    savlen;
                   4326:                 short   savtest;
                   4327:                 short   savop;
                   4328:                 char   *savargs = NULL;
                   4329:                 int     savarg;
                   4330:                 char   *savastck;
                   4331:                 char   *savpart;
                   4332:                 char   *b;
                   4333:                 char   *namold;
                   4334:                 long    rouoldc;
                   4335:                 char    label[255],
                   4336:                 routine[255];
                   4337:                 short   errex;      /* FLAG: error exit */
                   4338:                 short   libcall;
                   4339:                 libcall = FALSE;
                   4340: 
                   4341:                 for (i = 0; i < 255; i++) {
                   4342:                     routine[i] = '\201';
                   4343:                 }
                   4344:                 
                   4345:                 if (f == '%') libcall = TRUE;
                   4346:                 
                   4347:                 savmcmnd = mcmnd;
                   4348:                 savsetp = setpiece;
                   4349:                 savop = setop;
                   4350:                 savtest = test;
                   4351:                 stcpy (savarnam, varnam);
                   4352:                 savdofr = dofram0;
                   4353:                 errex = FALSE;
                   4354:                 
                   4355:                 if ((argstck[++arg] = a) >= s) {
                   4356:                     
                   4357:                     char   *bak;
                   4358:                     bak = partition;
                   4359:                     
                   4360:                     if (getpmore () == 0) {
                   4361:                         merr_raise (STKOV);
                   4362:                         return;
                   4363:                     }
                   4364: 
                   4365:                     a = a - bak + partition;
                   4366:                     b = b - bak + partition;
                   4367: 
                   4368:                 }
                   4369: 
                   4370:                 savlen = a - argptr;
                   4371:                 savpart = partition;
                   4372:                 
                   4373:                 if (spx > 0) {
                   4374: 
                   4375:                     if ((savargs = calloc ((unsigned) (savlen + 256L), 1)) == NULL) {
                   4376:                         merr_raise (STKOV);
                   4377:                         return;
                   4378:                     }           /* could not allocate stuff...     */
                   4379:                     
                   4380:                     stcpy0 (savargs, argptr, savlen + 256L);
                   4381:                     argptr = partition;
                   4382: 
                   4383:                 }
                   4384: 
                   4385:                 savarg = arg;
                   4386: 
                   4387:                 if ((savastck = calloc ((unsigned) (arg + 1), sizeof (char *))) == NULL) {
                   4388:                     merr_raise (STKOV);
                   4389:                     return;
                   4390:                 }           /* could not allocate stuff...     */
                   4391: 
                   4392:                 stcpy0 (savastck, (char *) argstck, (long) ((arg + 1) * sizeof (char *)));
                   4393: 
                   4394:                 b = label;      /* parse label */
                   4395:                 
                   4396:                 if ((ch = *++codptr) == '%') {
                   4397:                     *b++ = ch;
                   4398:                     codptr++;
                   4399:                 }
                   4400: 
                   4401:                 while (((ch = *codptr) >= 'A' && ch <= 'Z') || (ch >= 'a' && ch <= 'z') || (ch >= '0' && ch <= '9')) {
                   4402:                     *b++ = ch;
                   4403:                     codptr++;
                   4404:                 }
                   4405: 
                   4406:                 *b = EOL;
                   4407:                 b = routine;               
                   4408: 
                   4409:                 
                   4410:                 if (obj_field) {                    
                   4411:                     strcpy (b, &(object_class[1]));
                   4412:                     stcnv_c2m (b);
                   4413:                     b += strlen (object_class) - 1;
                   4414:                     *++b = EOL;
                   4415:                 }
                   4416:                 
                   4417:                 
                   4418: 
                   4419:                 if (ch == '^') {    /* parse routine name */
                   4420: 
                   4421: 
                   4422:                     
                   4423:                     if (((ch = *++codptr) >= 'A' && ch <= 'Z') || (ch >= 'a' && ch <= 'z') || ch == '%') {
                   4424:                         *b++ = ch;
                   4425:                     }
                   4426:                     
                   4427:                     while (((ch = *++codptr) >= 'A' && ch <= 'Z') || (ch >= 'a' && ch <= 'z') || (ch >= '0' && ch <= '9')) {
                   4428:                         *b++ = ch;
                   4429:                     }
                   4430: 
                   4431:                     if (libcall) {
                   4432:                         char newnam[255];
                   4433:                         
                   4434:                         for (i = 0; i < stlen (routine); i++) {
                   4435:                             routine[i] = tolower (routine[i]);
                   4436:                         }
                   4437: 
                   4438:                         newnam[0] = '%';
                   4439:                         newnam[1] = 'u';
                   4440:                         newnam[2] = 'l';
                   4441:                         newnam[3] = '\201';
                   4442: 
                   4443:                         stcat (newnam, routine);
                   4444:                         
                   4445:                         routine[0] = EOL;
                   4446:                         stcpy (routine, newnam);
                   4447: 
                   4448:                         b = b + 3;                        
                   4449:                     }
                   4450: 
                   4451:                     
                   4452:                     if (routine[0] == EOL) {
                   4453:                         merr_raise (ILLFUN);
                   4454:                         errex = TRUE;
                   4455:                         
                   4456:                         goto errexfun;
                   4457:                     }
                   4458: 
                   4459:                 }
                   4460: 
                   4461:                 
                   4462:                 
                   4463:                 {
                   4464:                     char nrou[255];
                   4465:                     char ntag[255];
                   4466:                     char nbuf[255];
                   4467: 
                   4468:                     stcpy (nrou, routine);
                   4469:                     stcpy (ntag, label);
                   4470: 
                   4471:                     stcnv_m2c (nrou);
                   4472:                     stcnv_m2c (ntag);
                   4473:                     
                   4474: 
                   4475:                     if (rtn_resolve (nrou, ntag, nbuf) != NULL) {
                   4476:                         strcpy (routine, nbuf);
                   4477:                         stcnv_c2m (routine);
                   4478:                     }
                   4479:                     else {
                   4480:                         merr_raise (LBLUNDEF);
                   4481:                         return;
                   4482:                     }
                   4483:                 }
                   4484:                 
                   4485:                 
                   4486:                 *b = EOL;
                   4487:                 
                   4488:                 /* something must be specified */
                   4489:                 if (label[0] == EOL && routine[0] == EOL) {
                   4490:                     merr_raise (ILLFUN);
                   4491:                     errex = TRUE;
                   4492:                     
                   4493:                     goto errexfun;
                   4494:                 }
                   4495: 
                   4496:                 
                   4497:                 if (obj_field) {
                   4498:                     char t_objf[255];
                   4499: 
                   4500:                     snprintf (t_objf, 254, "%s\201", object_instance);
                   4501:                     
                   4502:                     dofram0 = dofrmptr;
                   4503:                     *dofrmptr++ = DELIM;
                   4504:                     dofrmptr += stcpy (dofrmptr, t_objf) + 1;
                   4505:                 }
                   4506:                 
                   4507:                 
                   4508:                 if (*codptr == '(' && *(codptr + 1) != ')') {
                   4509: 
                   4510:                     
                   4511:                     if (!obj_field) dofram0 = dofrmptr;
                   4512:                     obj_field = FALSE;
                   4513:                     
                   4514: 
                   4515:                     //dofram0 = dofrmptr;
                   4516:                     
                   4517:                     i = 0;
                   4518:                     codptr++;
                   4519:                     
                   4520:                     for (;;) {
                   4521: 
                   4522:                         setpiece = TRUE;    /* to avoid error on closing bracket */
                   4523:                         
                   4524:                         if (*codptr == '.' && (*(codptr + 1) < '0' || *(codptr + 1) > '9')) {
                   4525:                             
                   4526:                             codptr++;
                   4527:                             
                   4528:                             expr (NAME);
                   4529:                             codptr++;
                   4530:                             *dofrmptr++ = DELIM;    /* to indicate call by name */
                   4531:                             dofrmptr += stcpy (dofrmptr, varnam) + 1;
                   4532:                         
                   4533:                         } 
                   4534:                         else {
                   4535:                             expr (STRING);
                   4536:                             dofrmptr += stcpy (dofrmptr, argptr) + 1;
                   4537:                         }
                   4538: 
                   4539:                         setpiece = FALSE;
                   4540:                         i++;
                   4541:                         
                   4542:                         if (merr () > OK) {
                   4543:                             dofrmptr = dofram0;
                   4544:                             errex = TRUE;
                   4545:                             
                   4546:                             goto errexfun;
                   4547:                         }
                   4548: 
                   4549:                         ch = *codptr++;
                   4550:                         
                   4551:                         if (ch == ',') continue;
                   4552: 
                   4553:                         if (ch != ')') {
                   4554:                             merr_raise (COMMAER);
                   4555:                             dofrmptr = dofram0;
                   4556:                             errex = TRUE;
                   4557: 
                   4558:                             goto errexfun;
                   4559:                         }
                   4560: 
                   4561:                         ch = *codptr;
                   4562:                         
                   4563:                         break;
                   4564: 
                   4565:                     }
                   4566: 
                   4567:                 } 
                   4568:                 else {
                   4569: 
                   4570:                     
                   4571:                     if (!obj_field) {
                   4572:                         dofram0 = 0;                    
                   4573:                     }
                   4574: 
                   4575:                     obj_field = FALSE;
                   4576:                     
                   4577:                     //dofram0 = 0;
                   4578:                     if (*codptr == '(') codptr += 2;
                   4579:                 
                   4580:                 }
                   4581: 
                   4582:                 rouoldc = roucur - rouptr;
                   4583:                 namold = 0;
                   4584: 
                   4585:                 if (routine[0] != EOL) {    /* load routine */                    
                   4586:                     
                   4587:                     dosave[0] = EOL;
                   4588:                     loadsw = TRUE;
                   4589:                     
                   4590:                     while ((*(namptr++)) != EOL);
                   4591:                     
                   4592:                     namold = namptr;
                   4593:                     
                   4594:                     stcpy (namptr, rou_name);
                   4595:                     zload (routine);
                   4596:                     
                   4597:                     if (merr () > OK) {
                   4598:                         errex = TRUE;
                   4599:                         goto errexfun;
                   4600:                     }
                   4601: 
                   4602:                 } 
                   4603: 
                   4604:                 {
                   4605: 
                   4606:                     char *reg, *reg1;
                   4607: 
                   4608:                     reg1 = rouptr;
                   4609:                     reg = reg1;
                   4610:                     
                   4611:                     if (label[0] != EOL) {
                   4612: 
                   4613:                         while (reg < rouend) {
                   4614:                         
                   4615:                             reg++;
                   4616:                             j = 0;
                   4617:                         
                   4618:                             while (*reg == label[j]) {
                   4619:                                 reg++;
                   4620:                                 j++;
                   4621:                             }
                   4622:                         
                   4623:                             if (label[j] == EOL) {
                   4624: 
                   4625:                                 if (*reg == ':') {
                   4626:                                     char return_type[255];
                   4627:                                     short ret_type;
                   4628:                                     register int typei;
                   4629: 
                   4630:                                     /* we got a return type. parse it. */
                   4631:                                     reg++; /* skip over the colon */
                   4632: 
                   4633:                                     typei = 0;
                   4634:                                     
                   4635:                                     while (isalpha ((ch = *reg++))) {
                   4636:                                         return_type[typei++] = toupper (ch);
                   4637:                                     }
                   4638:                                     
                   4639:                                     reg--; /* back up to the previous char so that parsing of the entry point can resume later */
                   4640:                                     return_type[typei] = '\0';
                   4641: 
                   4642:                                     ret_type = dt_get_type (return_type);
                   4643:                                     if (ret_type == DT_INVALID) {
                   4644:                                         merr_raise (INVTYPE);
                   4645:                                         errex = TRUE;
                   4646: 
                   4647:                                         goto errexfun;
                   4648:                                     }
                   4649: 
                   4650:                                     /* save off the return type to be checked by QUIT code */
                   4651:                                     extr_types[nstx + 1] = ret_type; 
                   4652:                                     
                   4653:                                     //printf ("return_type = '%s' *reg = '%c'\r\n", return_type, *reg);
                   4654:                                 }
                   4655:                                 
                   4656:                                 if (*reg == TAB || *reg == SP) goto off;
                   4657:                                 /* call of procedure without specifying a parameter list */
                   4658: 
                   4659:                                 if (*reg == '(') {
                   4660: 
                   4661:                                     if (dofram0 == 0) dofram0 = dofrmptr;
                   4662:                                 
                   4663:                                     goto off;
                   4664: 
                   4665:                                 }
                   4666: 
                   4667:                             }
                   4668: 
                   4669:                             reg = (reg1 = reg1 + UNSIGN (*reg1) + 2);
                   4670: 
                   4671:                         }
                   4672: 
                   4673:                         {
                   4674: 
                   4675:                             merr_raise (LBLUNDEF);
                   4676:                             stcpy (varerr, label);  /* to be included in error message */
                   4677: 
                   4678:                             if (dofram0) dofrmptr = dofram0; /* reset frame pointer */
                   4679: 
                   4680:                             zload (rou_name);
                   4681:                             
                   4682:                             errex = TRUE;
                   4683:                             
                   4684:                             goto errexfun;
                   4685: 
                   4686:                         }
                   4687:                     }
                   4688: 
                   4689: off:
                   4690:                     
                   4691:                     roucu0 = reg1;
                   4692:                 
                   4693:                 }
                   4694:                 
                   4695:                 if (roucu0 >= rouend) {
                   4696: 
                   4697:                     merr_raise (LBLUNDEF);
                   4698:                     stcpy (varerr, label);  /* to be included in error message */
                   4699:                     
                   4700:                     if (dofram0) dofrmptr = dofram0; /* reset frame pointer */
                   4701:                     
                   4702:                     zload (rou_name);
                   4703:                     errex = TRUE;
                   4704: 
                   4705:                     goto errexfun;
                   4706: 
                   4707:                 }
                   4708: 
                   4709:                 if (routine[0] != EOL) stcpy (rou_name, routine);
                   4710: 
                   4711:                 roucu0++;
                   4712:                 forsw = FALSE;
                   4713: 
                   4714: #ifdef DEBUG_NEWSTACK
                   4715:                 printf("Stack PUSH in expr.c!\r\n");
                   4716: #endif
                   4717: 
                   4718:                 if (++nstx > NESTLEVLS) {
                   4719:                     nstx--;
                   4720:                     merr_raise (STKOV);
                   4721:                     errex = TRUE;
                   4722: 
                   4723:                     goto errexfun;
                   4724:                 }
                   4725:                 else {
                   4726:                     estack++;
                   4727:                 }
                   4728: 
                   4729:                 nestc[nstx] = '$';
                   4730: 
                   4731: #ifdef DEBUG_NEWSTACK
                   4732:                 if(!cmdptr) printf("CMDPTR is ZERO!\r\n");
                   4733: #endif
                   4734: 
                   4735:                 nestp[nstx] = cmdptr;
                   4736:                 nestn[nstx] = namold;
                   4737:                 nestr[nstx] = rouoldc;
                   4738:                 nestnew[nstx] = 0;
                   4739:                 nestlt[nstx] = level;
                   4740:                 level = 0;      /* push level ; clr level */
                   4741:                 ztrap[nstx][0] = EOL;
                   4742: 
                   4743:                 cmdptr += stcpy (cmdptr, codptr - 1) + 1;
                   4744:                 roucur = roucu0;
                   4745: 
                   4746:                 if (dofram0) {
                   4747:                     
                   4748:                     char *reg, *reg1;
                   4749: 
                   4750:                     reg = roucu0;
                   4751:                     reg1 = dofram0;
                   4752: 
                   4753:                     while ((ch = (*reg++)) != '(') {
                   4754: 
                   4755:                         if (ch == SP || ch == TAB || ch == EOL) {
                   4756:                             break;
                   4757:                         }
                   4758: 
                   4759:                     }
                   4760:                     
                   4761:                     if (ch != '(') {
                   4762: 
                   4763:                         merr_raise (TOOPARA);
                   4764:                         dofrmptr = dofram0;
                   4765:                         errex = TRUE;
                   4766:                         
                   4767: #ifdef DEBUG_NEWSTACK
                   4768:                         printf("Cheesy Stack POP in expr.c\r\n");
                   4769: #endif
                   4770: 
                   4771: 
                   4772: 
                   4773:                         nstx--;
                   4774:                         estack--;
                   4775: 
                   4776:                         goto errexfun;
                   4777: 
                   4778:                     }
                   4779: 
                   4780:                     j = 0;
                   4781: 
                   4782:                     if (*reg == ')') {
                   4783:                         reg++;
                   4784:                     }
                   4785:                     else {
                   4786:                         /* PARSE FORMALLIST */
                   4787:                         short fl_type;
                   4788:                         short fl_mandatory;
                   4789:                         short fl_byref;
                   4790:                         char fl_typestr[255];
                   4791:                         char fl_mand;
                   4792:                         short dtcheck_result;                        
                   4793:                         register short typei;
                   4794:                         short lastparm;
                   4795:                         short gotparm;
                   4796:                         int paramct;
                   4797:                         
                   4798:                         fl_type = DT_AUTO;
                   4799:                         fl_mandatory = TRUE;
                   4800:                         fl_byref = FALSE;
                   4801:                         dtcheck_result = FALSE;
                   4802:                         lastparm = FALSE;
                   4803:                         gotparm = FALSE;
                   4804:                         paramct = 0;
                   4805:                         
                   4806:                         while ((ch = (*reg++)) != EOL) {
                   4807:                             
                   4808:                             gotparm = FALSE;
                   4809:                             
                   4810:                             if ((ch == ':') && j) {
                   4811:                                 
                   4812:                                 /* we have a type specification */
                   4813:                                 typei = 0;
                   4814: 
                   4815:                                 while ((ch = (*reg++)) != EOL) {
                   4816:                                     /* parse it */
                   4817:                                     if (isalpha (ch)) {
                   4818:                                         fl_typestr[typei++] = ch;
                   4819:                                     }
                   4820:                                     else if (ch == ':') {
                   4821:                                         /* we have an "optional" part */
                   4822:                                         fl_typestr[typei] = '\0';
                   4823:                                         fl_mand = *(reg + 1);
                   4824: 
                   4825:                                         if ((fl_mand == 'o') || (fl_mand == 'O')) {
                   4826:                                             fl_mandatory = FALSE;
                   4827:                                         }
                   4828:                                         else {
                   4829:                                             merr_raise (INVLIBOPT);
                   4830:                                             dofrmptr = dofram0;
                   4831: 
                   4832:                                             errex = TRUE;
                   4833: 
                   4834:                                             nstx--;
                   4835:                                             estack--;
                   4836: 
                   4837:                                             goto errexfun;
                   4838:                                         }
                   4839:                                     }
                   4840:                                     else if ((ch == ',') || (ch == ')')) {
                   4841: 
                   4842:                                         if (ch == ')') {
                   4843:                                             lastparm = TRUE;
                   4844:                                         }
                   4845: 
                   4846:                                         gotparm = TRUE;
                   4847:                                         paramct++;
                   4848:                                         
                   4849:                                         fl_typestr[typei] = '\0';
                   4850:                                         fl_type = dt_get_type (fl_typestr);
                   4851: 
                   4852:                                         if (fl_type == DT_INVALID) {
                   4853: 
                   4854:                                             merr_raise (INVTYPE);
                   4855:                                             dofrmptr = dofram0;     /* reset frame pointer */
                   4856:                                             errex = TRUE;
                   4857:                                             
                   4858:                                             nstx--;
                   4859:                                             estack--;
                   4860: 
                   4861:                                             goto errexfun;
                   4862: 
                   4863:                                         }
                   4864:                                         
                   4865:                                         break;
                   4866:                                     }
                   4867:                                 }                                
                   4868:                             }
                   4869:                             
                   4870:                             if (gotparm == TRUE) {
                   4871: 
                   4872:                                 if (reg1[0] == DELIM) {
                   4873:                                     dtcheck_result = dt_check (fl_type, reg1 + 1, paramct);
                   4874:                                 }
                   4875:                                 else {
                   4876:                                     dtcheck_result = dt_check (fl_type, reg1, paramct);
                   4877:                                 }
                   4878:                             
                   4879:                                 if (dtcheck_result == FALSE) {
                   4880:                                     merr_raise (TYPMISMATCH);
                   4881:                                     dofrmptr = dofram0;     // reset frame pointer
                   4882: 
                   4883:                                     errex = TRUE;
                   4884: 
                   4885:                                     nstx--;
                   4886:                                     estack--;
                   4887: 
                   4888:                                     goto errexfun;
                   4889:                                 }
                   4890:                             }
                   4891:                             
                   4892:                             if ((ch == ',' || ch == ')') && j) {
                   4893:                             
                   4894:                                 varnam[j] = EOL;
                   4895: 
                   4896: #if 0
                   4897:                     printf("01 [nstx] nstx is (%d) in expr.c\r\n",nstx);
                   4898:                     printf("[nestnew[nstx]] is (%d) in expr.c\r\n",nestnew[nstx]);
                   4899:                     printf("[newptr] newptr is [");
                   4900:                     for(loop=0; loop<50; loop++) 
                   4901:                     printf("%c", (newptr[loop] == EOL) ? '!' : newptr[loop]);
                   4902:                     printf("] in expr.c\r\n");
                   4903: #endif
                   4904: 
                   4905:                                 if (nestnew[nstx] == 0) nestnew[nstx] = newptr;
                   4906: 
                   4907:                                 if (reg1 < dofrmptr) {
                   4908: 
                   4909:                                     if (*reg1 == DELIM) {   /* call by reference */
                   4910: 
                   4911:                                         if (stcmp (reg1 + 1, varnam)) {     /* are they different?? */
                   4912:                                             symtab (new_sym, varnam, "");
                   4913:                                             symtab (m_alias, varnam, reg1 + 1);
                   4914:                                         }
                   4915: 
                   4916:                                     } 
                   4917:                                     else {
                   4918:                                         symtab (new_sym, varnam, "");   /* call by value */
                   4919:                                         symtab (set_sym, varnam, reg1);
                   4920:                                     }
                   4921: 
                   4922:                                     reg1 += stlen (reg1) + 1;
                   4923: 
                   4924:                                 } 
                   4925:                                 else {
                   4926:                                     symtab (new_sym, varnam, "");
                   4927:                                 }
                   4928:                                 
                   4929:                                 if (ch == ')') break;
                   4930:                                 
                   4931:                                 j = 0;
                   4932:                                 continue;
                   4933:                             }
                   4934: 
                   4935:                             if ((ch >= 'A' && ch <= 'Z') || (ch >= 'a' && ch <= 'z') || (ch >= '0' && ch <= '9' && j) || (ch == '%' && j == 0)) {
                   4936:                                 varnam[j++] = ch;
                   4937:                                 continue;
                   4938:                             }
                   4939:                             
                   4940:                             merr_raise (ARGLIST);
                   4941:                             dofrmptr = dofram0;     /* reset frame pointer */
                   4942:                             errex = TRUE;
                   4943: 
                   4944:                             nstx--;
                   4945:                             estack--;
                   4946: 
                   4947:                             goto errexfun;
                   4948: 
                   4949:                         }
                   4950: 
                   4951:                     }
                   4952: 
                   4953:                     if (reg1 < dofrmptr) {
                   4954:                         merr_raise (TOOPARA);
                   4955:                         dofrmptr = dofram0; /* reset frame pointer */
                   4956:                         errex = TRUE;
                   4957:                         nstx--;
                   4958:                         estack--;                    
                   4959: 
                   4960:                         goto errexfun;
                   4961:                     }
                   4962: 
                   4963:                     dofrmptr = dofram0;
                   4964:                 
                   4965:                 }
                   4966: 
                   4967:                 xecline (0);
                   4968: 
                   4969:                 if (repQUIT) {      /* repeat QUIT */
                   4970: 
                   4971:                     stcpy (code, " V 26:\201");
                   4972: 
                   4973: #ifdef DEBUG_NEWSTACK
                   4974:                     printf("Trying to get at nstx in expr.c (2)\r\n");
                   4975: #endif
                   4976: 
                   4977:                     intstr (&code[6], nstx - repQUIT);
                   4978:                     repQUIT = 0;
                   4979:                     codptr = code;
                   4980: 
                   4981:                     return;
                   4982: 
                   4983:                 }
                   4984: 
                   4985:                 stcpy (tmp, argptr);
                   4986: 
                   4987: errexfun:
                   4988: 
                   4989:                 mcmnd = savmcmnd;
                   4990:                 setpiece = savsetp;
                   4991:                 setop = savop;
                   4992:                 test = savtest;
                   4993:                 
                   4994:                 stcpy (varnam, savarnam);
                   4995:                 
                   4996:                 dofram0 = savdofr;
                   4997:                 argptr = partition;
                   4998:                 a = argptr;
                   4999:                 
                   5000:                 if (spx > 0) {
                   5001:                     stcpy0 (argptr, savargs, savlen + 256L);
                   5002:                     free (savargs);
                   5003:                 }
                   5004:                 
                   5005:                 arg = savarg;
                   5006:                 stcpy0 ((char *) argstck, savastck, (long) ((arg + 1) * sizeof (char *)));
                   5007: 
                   5008:                 free (savastck);
                   5009:                 a = savlen + argptr;
                   5010:                 
                   5011:                 if (savpart != partition) { /* autoadjust may have changed that */
                   5012:                     
                   5013:                     f = 0;
                   5014: 
                   5015:                     while (f <= arg) {
                   5016: 
                   5017:                         if (argstck[f]) argstck[f] = argstck[f] - savpart + partition;
                   5018:                     
                   5019:                         f++;
                   5020: 
                   5021:                     }
                   5022: 
                   5023:                 }
                   5024: 
                   5025:                 if (errex) {
                   5026: 
                   5027:                     if (zexflag && (merr () == NOPGM || merr () == LBLUNDEF)) merr_raise (ILLFUN);
                   5028:                     return;
                   5029:                 
                   5030:                 }
                   5031: 
                   5032:                 if (merr () != OK) return;
                   5033: /*                if (ierr != OK && ierr != (OK - CTRLB)) return;*/
                   5034: 
                   5035:                 stcpy (a, tmp);
                   5036:                 
                   5037:                 goto exec;
                   5038:             
                   5039:             }               /* end of extrinsic function/variable section */
                   5040:         
                   5041:         } 
                   5042:         else if (((ch = *++codptr) >= 'A' && ch <= 'Z') || (ch >= 'a' && ch <= 'z')) {
                   5043: 
                   5044:             if (ch < 'a') ch += 32;
                   5045: 
                   5046:             tmp[0] = SP;
                   5047:             tmp[1] = f;
                   5048:             tmp[2] = ch;
                   5049:             b = &tmp[3];
                   5050:             
                   5051:             while (((ch = *++codptr) >= 'A' && ch <= 'Z') || (ch >= 'a' && ch <= 'z')) *b++ = ch | 0140;
                   5052: 
                   5053:             *b++ = SP;
                   5054:             *b = EOL;
                   5055:             
                   5056:             if (ch == '(') {        /* function */
                   5057: 
                   5058:                 if (f != 'z') {     /* standard instrinsic functions */
                   5059: 
                   5060:                     if (find (" ascii char data extract find fn fnumber get increment ins instanceof justify length na name next order piece \
                   5061:                     query qlength ql qsubscript qs random re reverse select st stack text tr translate ty type view ", tmp) == FALSE) {
                   5062:                         merr_raise (ILLFUN);
                   5063:                         return;
                   5064:                     }
                   5065: 
                   5066:                     if (f == 'f' && tmp[2] == 'n') f = FNUMBER;
                   5067:                     else if (f == 'q' && tmp[2] == 'l') f = QLENGTH;
                   5068:                     else if (f == 'q' && tmp[2] == 's') f = QSUBSCRIPT;
                   5069:                     else if (f == 'r' && tmp[2] == 'e') f = REVERSE;
                   5070:                     else if (f == 's' && tmp[2] == 't') f = SVNstack;
                   5071:                     else if (f == 't' && tmp[2] == 'r') f = TRANSLATE;
                   5072:                     else if (f == 'n' && tmp[2] == 'a') f = 'N';
                   5073:                     else if (f == 't' && tmp[2] == 'y') f = TYPE;
                   5074:                     else if (f == 'i' && tmp[3] == 's') f = INSTANCEOF;                   
                   5075: 
                   5076:                 } 
                   5077:                 else {
                   5078: 
                   5079:                     /* userdefined intrinsic: process as extrinsic */
                   5080:                     if ((find (zfunctions, tmp) == FALSE) && (tmp[2] != 'f' || tmp[3] != SP)) {
                   5081:                         
                   5082:                         f = stlen (tmp) - 1;
                   5083:                         stcpy (&tmp[f], codptr);
                   5084:                         
                   5085:                         code[0] = '$';
                   5086:                         code[1] = '^';
                   5087:                         code[2] = '%';
                   5088:                         code[3] = 'Z';
                   5089:                         
                   5090:                         stcpy (&code[4], &tmp[2]);
                   5091:                         
                   5092:                         codptr = code;
                   5093:                         f = '$';
                   5094:                         zexflag = TRUE;
                   5095:                         
                   5096:                         goto extra_fun;
                   5097: 
                   5098:                     }
                   5099: 
                   5100:                     f = tmp[2] - 32;
                   5101: 
                   5102:                     if (tmp[3] == SP) {
                   5103: 
                   5104:                         if (f == 'S' && s_fun_flag == FALSE) f = 'o';    /* ZSORT(=$ORDER) instead of ZSYNTAX */
                   5105:                         if (f == 'P' && p_fun_flag == FALSE) f = ZPREVIOUS;  /* ZPREVIOUS instead of ZPIECE */
                   5106:                         if (f == 'D' && d_fun_flag == FALSE) f = ZDATA;  /* ZDATA instead of ZDATE */
                   5107:                         if (f == 'N' && n_fun_flag == FALSE) f = ZNEXT;  /* ZNEXT instead of ZNAME */
                   5108:                         
                   5109:                     } 
                   5110:                     else {
                   5111: 
                   5112:                         switch (f) {
                   5113: 
                   5114: 
                   5115:                             case 'C':
                   5116:                                 if ((stcmp (" zcrc \201", tmp) == 0) ||
                   5117:                                 (stcmp (" zcr \201", tmp) == 0))
                   5118:                                 f = ZCRC;
                   5119:                                 break;
                   5120: 
                   5121: 
                   5122:                             case 'D':
                   5123:                                 if (stcmp (" zdata \201", tmp) == 0)
                   5124:                                 f = ZDATA;
                   5125:                                 break;
                   5126: 
                   5127: 
                   5128:                             case 'L':
                   5129:                                 if (stcmp (" zlsd \201", tmp) == 0)
                   5130:                                 f = ZLSD;
                   5131:                                 break;
                   5132: 
                   5133: 
                   5134:                             case 'N':
                   5135:                                 if (stcmp (" znext \201", tmp) == 0)
                   5136:                                 f = ZNEXT;
                   5137:                                 break;
                   5138: 
                   5139: 
                   5140:                             case 'P':
                   5141:                                 if (stcmp (" zprevious \201", tmp) == 0)
                   5142:                                 f = ZPREVIOUS;
                   5143:                                 break;
                   5144: 
                   5145:                             case 'S':
                   5146:                                 if (stcmp (" zsort \201", tmp) == 0)
                   5147:                                 f = 'o';    /* process $ZSORT as $ORDER */
                   5148:                                 break;
                   5149:                                                         
                   5150: 
                   5151:                         }
                   5152: 
                   5153:                     }
                   5154:                 }
                   5155:             } 
                   5156:             else {            /* special variable */
                   5157: 
                   5158:                 if (f != 'z') {
                   5159:                     
                   5160:                     if (find (" di dialect ec ecode es estack et etrap device horolog io job key pd pdisplay principal quit reference st stack storage sy system test ti timezone tl tlevel tr trollback wi with ", tmp) == FALSE) {
                   5161:                         merr_raise (ILLFUN);
                   5162:                         return;
                   5163:                     }
                   5164: 
                   5165:                     if (f == 's') {
                   5166: 
                   5167:                         if (tmp[2] == 'y') f = SVNsystem;
                   5168:                         if (tmp[2] == 't') f = SVNstack;
                   5169: 
                   5170:                     }
                   5171: 
                   5172:                     if (f == 'd') {
                   5173:                         f = SVNdialect;
                   5174:                     }
                   5175:                     
                   5176:                     if (f == 'e') {
                   5177:                         
                   5178:                         if (tmp[2] == 'c') f = SVNecode;
                   5179:                         if (tmp[2] == 's') f = SVNestack;
                   5180:                         if (tmp[2] == 't') f = SVNetrap;
                   5181: 
                   5182:                     }
                   5183: 
                   5184:                     if (f == 'p' && tmp[2] == 'd') f = SVNpdisplay;                        
                   5185: 
                   5186:                     if (f == 't') {
                   5187:                         
                   5188:                         if (tmp[2] == 'i') f = SVNtimezone;
                   5189:                         if (tmp[2] == 'l') f = SVNtlevel;
                   5190:                         if (tmp[2] == 'r') f = SVNtrollback;
                   5191: 
                   5192:                     }
                   5193: 
                   5194:                 } 
                   5195:                 else {
                   5196: 
                   5197:                     if (find (zsvn, tmp) == FALSE) {
                   5198:                         *(--b) = EOL;   /* there's a SPace we don't need */
                   5199:                         f = ' ';    /* user defined svn */
                   5200:                     } 
                   5201:                     else {
                   5202: 
                   5203:                         f = tmp[2] - 32;
                   5204: 
                   5205:                         if (f == 'T' && tmp[3] == 'r' && (tmp[4] == SP || (stcmp (" ztrap \201", tmp) == 0))) f = ZTRAP;
                   5206: 
                   5207:                         if (f == 'M') { /* loadable match */
                   5208: 
                   5209:                             if ((f = tmp[3]) >= 'a' && f <= 'z') f -= 32;
                   5210: 
                   5211:                             f -= 64;
                   5212: 
                   5213:                         }
                   5214: 
                   5215:                         if (f == 'U' && tmp[3] == 't') f = SVNzut;
                   5216:                             
                   5217:                     }
                   5218:                 }
                   5219:             }
                   5220:         }
                   5221: 
                   5222:         if (ch != '(') {        /* 'special variable' */
                   5223:         
                   5224:             codptr--;
                   5225:         
                   5226:             if (extyp != STRING && extyp != ARGIND && spx == 0) {
                   5227:                 return;
                   5228:             }
                   5229: 
                   5230:             if ((argstck[++arg] = a) >= s) {
                   5231: 
                   5232:                 char   *bak;
                   5233:                 bak = partition;
                   5234: 
                   5235:                 if (getpmore () == 0) {
                   5236:                     merr_raise (STKOV);
                   5237:                     return;
                   5238:                 }
                   5239: 
                   5240:                 a = a - bak + partition;
                   5241:                 b = b - bak + partition;
                   5242: 
                   5243:             }
                   5244: 
                   5245:             /************* special variable evaluation ************************************/
                   5246:             switch (f) {
                   5247: 
                   5248: 
                   5249:                 /* $ZUUID */
                   5250:                 case 'U':
                   5251: 
                   5252:                     uuid_v4 (a);
                   5253:                     stcnv_c2m (a);
                   5254:                     
                   5255:                     goto exec;
                   5256: 
                   5257: #if !defined(__osf__)
                   5258:                 case SVNzut:
                   5259:                 {
                   5260:                     unsigned long long res;
                   5261:                     
                   5262:                     struct timeval tv;
                   5263:                     gettimeofday(&tv, NULL);
                   5264: 
                   5265:                     res = tv.tv_sec * 1000000 + tv.tv_usec;
                   5266: 
                   5267:                     sprintf (a, "%llu\201", res);
                   5268: 
                   5269:                     goto exec;
                   5270:                 }
                   5271: #endif
                   5272:                 
                   5273:                 /* $JOB */
                   5274:                 case 'j':
                   5275: 
                   5276:                     lintstr (a, pid);
                   5277: 
                   5278:                     goto exec;
                   5279: 
                   5280: 
                   5281:                 /* $IO */
                   5282:                 case 'i':
                   5283: 
                   5284:                     intstr (a, io);
                   5285:                     i = stlen (a);
                   5286:                     a[i++] = ':';
                   5287:                     a[i++] = '"';
                   5288:                     i += stcpy (&a[i], dev[io]);
                   5289:                     a[i++] = '"';
                   5290:                     a[i] = EOL;
                   5291: 
                   5292:                     goto exec;
                   5293:                     
                   5294:                 case SVNdialect:
                   5295:                 {
                   5296:                     short rb_slot;
                   5297:                     rb_slot = rbuf_slot_from_name (rou_name);
                   5298: 
                   5299:                     switch (rbuf_flags[rb_slot].dialect) {
                   5300: 
                   5301:                         case D_FREEM:
                   5302:                             sprintf (a, "FREEM\201");
                   5303:                             break;
                   5304:                             
                   5305:                         case D_MDS:
                   5306:                             sprintf (a, "MDS\201");
                   5307:                             break;
                   5308: 
                   5309:                         case D_M77:
                   5310:                             sprintf (a, "M77\201");
                   5311:                             break;
                   5312: 
                   5313:                         case D_M84:
                   5314:                             sprintf (a, "M84\201");
                   5315:                             break;
                   5316: 
                   5317:                         case D_M90:
                   5318:                             sprintf (a, "M90\201");
                   5319:                             break;
                   5320: 
                   5321:                         case D_M95:
                   5322:                             sprintf (a, "M95\201");
                   5323:                             break;
                   5324: 
                   5325:                         case D_M5:
                   5326:                             sprintf (a, "M5\201");
                   5327:                             break;
                   5328:                     }
                   5329: 
                   5330:                     goto exec;
                   5331:                             
                   5332:                 }
                   5333: 
                   5334:                 /* $PDISPLAY */
                   5335:                 case SVNpdisplay:
                   5336: 
                   5337:                     if (getenv ("DISPLAY") != NULL) {
                   5338:                         char *mwapi_display;
                   5339:                         char disp_temp[255];
                   5340: 
                   5341:                         mwapi_display = getenv ("DISPLAY");
                   5342:                         strncpy (disp_temp, mwapi_display, 255);
                   5343:                         stcnv_c2m (disp_temp);
                   5344:                         stcpy (a, disp_temp);
                   5345:                     }
                   5346:                     else {
                   5347:                         intstr (a, 0);
                   5348:                     }
                   5349:                     goto exec;
                   5350: 
                   5351:                 /* $PRINCIPAL */
                   5352:                 case 'p':
                   5353: 
                   5354:                     a[0] = '0';
                   5355:                     a[1] = ':';
                   5356:                     a[2] = '"';
                   5357:                     i = 3 + stcpy (&a[3], dev[HOME]);
                   5358:                     a[i++] = '"';
                   5359:                     a[i] = EOL;
                   5360: 
                   5361:                     goto exec;
                   5362: 
                   5363: 
                   5364:                 /* $QUIT */
                   5365:                 case 'q':
                   5366: 
                   5367:                     a[0] = '0' | (nestc[nstx] == '$');
                   5368: 
                   5369: 
                   5370: 
                   5371:                     a[1] = EOL;
                   5372: 
                   5373:                     goto exec;
                   5374: 
                   5375: 
                   5376:                 /* $TEST */
                   5377:                 case 't':
                   5378:                     
                   5379:                     a[0] = '0' | test;
                   5380:                     a[1] = EOL;
                   5381: 
                   5382:                     goto exec;
                   5383: 
                   5384: 
                   5385:                 /* $HOROLOG */
                   5386:                 case 'h':
                   5387: 
                   5388:                     {
                   5389: 
                   5390:                         unsigned long ilong, ilong1;
                   5391: 
                   5392:                         ilong1 = time (0L) + tzoffset;  /* make $H local time */
                   5393:                         ilong = ilong1 / 86400;
                   5394:                         
                   5395:                         lintstr (a, ilong + 47117);
                   5396:                         i = stlen (a);
                   5397:                         
                   5398:                         a[i++] = ',';
                   5399:                         ilong = ilong1 - (ilong * 86400);
                   5400:                         
                   5401:                         lintstr (&a[i], ilong);
                   5402: 
                   5403: //                        printf ("unix epoch = %d\r\n", horolog_to_unix (a));
                   5404:                         
                   5405:                         goto exec;
                   5406: 
                   5407:                     }
                   5408: 
                   5409: 
                   5410:                 /* $ZHOROLOG() */
                   5411:                 case 'H':
                   5412:                     {
                   5413: 
                   5414:                         unsigned long ilong, ilong1;
                   5415:                     
                   5416: #if defined(USE_GETTIMEOFDAY) && !defined(__osf__)
                   5417:                     
                   5418:                         struct timeval timebuffer;
                   5419:                         gettimeofday (&timebuffer, NULL);
                   5420:                         
                   5421:                         ilong1 = timebuffer.tv_sec + tzoffset;  /* make $ZH local time */
                   5422:                     
                   5423: #else
                   5424: 
                   5425:                         struct timeb timebuffer;
                   5426:                         ftime (&timebuffer);
                   5427:                         ilong1 = timebuffer.time + tzoffset;    /* make $ZH local time */
                   5428:                     
                   5429: #endif
                   5430:                     
                   5431:                         ilong = ilong1 / 86400;
                   5432:                         lintstr (a, ilong + 47117);
                   5433:                         i = stlen (a);
                   5434:                         a[i++] = ',';
                   5435:                         ilong = ilong1 - (ilong * 86400);
                   5436:                         lintstr (&a[i], ilong);
                   5437: 
                   5438: #if defined(USE_GETTIMEOFDAY) && !defined(__osf__)
                   5439:                         if ((ilong = timebuffer.tv_usec)) 
                   5440: #else
                   5441:                         if ((ilong = timebuffer.millitm)) 
                   5442: #endif
                   5443:                         {
                   5444:                             char doggie_bag[50];
                   5445: 
                   5446:                             snprintf (doggie_bag, 49, ".%ld\201", ilong);
                   5447:                             stcat (a, doggie_bag);
                   5448:                         }
                   5449:                     }
                   5450:                     goto exec;
                   5451: 
                   5452: 
                   5453:                 case SVNsystem:
                   5454: 
                   5455:                     snprintf (a, 512, "%d,\"%s\"\201", MDC_VENDOR_ID, jour_hostid); 
                   5456:                     goto exec;
                   5457: 
                   5458: 
                   5459:                 case SVNtimezone:
                   5460: 
                   5461:                     lintstr (a, tzoffset);
                   5462:                     goto exec;
                   5463: 
                   5464: 
                   5465:                 case SVNtlevel:
                   5466: 
                   5467:                     snprintf (a, 255, "%d\201", tp_level);
                   5468:                     goto exec;
                   5469: 
                   5470: 
                   5471:                 case SVNtrollback:
                   5472: 
                   5473:                     a[0] = '0';
                   5474:                     a[1] = EOL;
                   5475:                     goto exec;
                   5476: 
                   5477: 
                   5478:                 case SVNecode:    
                   5479: 
                   5480:                     //write_m ("in SVNecode\r\n\201"); 
                   5481: 
                   5482:                     if (stlen (user_ecode)) {
                   5483:                         stcpy (a, user_ecode);
                   5484:                     }
                   5485:                     else {
                   5486:                         stcpy (a, ecode);
                   5487:                     }
                   5488:                     
                   5489:                     goto exec;
                   5490: 
                   5491: 
                   5492:                 case SVNestack:
                   5493:                     {
                   5494:                         char esbuf[256];
                   5495:                         snprintf (esbuf, 255, "%d\201", estack);
                   5496: 
                   5497:                         stcpy (a, esbuf);
                   5498:                         goto exec;
                   5499: 
                   5500:                     }
                   5501: 
                   5502: 
                   5503:                 case SVNetrap:
                   5504: //                    write_m ("in SVNetrap\r\n\201");
                   5505:                     stcpy (a, etrap);
                   5506:                     goto exec;
                   5507: 
                   5508: 
                   5509:                 case SVNstack:
                   5510:                     
                   5511:                     intstr (a, nstx);
                   5512: 
                   5513:                     goto exec;
                   5514: 
                   5515:                    
                   5516:                 /* $KEY */
                   5517:                 case 'k':
                   5518: 
                   5519:                    stcpy (a, zb);
                   5520:                    if (*a >= SP && *a < DEL) *a = EOL;
                   5521: 
                   5522:                    goto exec;
                   5523: 
                   5524:                    
                   5525:                 /* $DEVICE */
                   5526:                 case 'd':
                   5527:                     if (devstat[io].mdc_err == 0) {
                   5528:                         snprintf (a, 3, "0\201\0");              
                   5529:                     }
                   5530:                     else {
                   5531:                         snprintf (a, 120, "%d,%d,%s\201\0", devstat[io].mdc_err, devstat[io].frm_err, devstat[io].err_txt);
                   5532:                     }
                   5533: 
                   5534:                     goto exec;
                   5535:                    
                   5536:                 /* $STORAGE */
                   5537:                 case 's':
1.3       snw      5538:                    snprintf (a, 255 , "%ld\201", DEFPSIZE);
1.1       snw      5539:                    goto exec;
                   5540: 
                   5541:                /* $WITH */
                   5542:                case 'w':
                   5543:                    stcpy (a, i_with);
                   5544:                    goto exec;
                   5545:                    
                   5546:                 /* $X */
                   5547:                 case 'x':
                   5548: 
                   5549:                    intstr (a, xpos[io]);
                   5550:                    goto exec;
                   5551: 
                   5552:                    
                   5553:                 /* $Y */
                   5554:                 case 'y':
                   5555: 
                   5556:                    intstr (a, ypos[io]);
                   5557:                    goto exec;
                   5558: 
                   5559:                    
                   5560:                 /* non-standard special variables */
                   5561: 
                   5562:                 /* $ZA - on HOME device dummy, else byte offset to begin of file */
                   5563:                 case 'A':
                   5564:                    if (io == HOME) {
                   5565:                        a[0] = '0';
                   5566:                        a[1] = EOL;
                   5567:                    }
                   5568:                    else {
                   5569:                        lintstr (a, ftell (opnfile[io]));
                   5570:                    }
                   5571:                    goto exec;
                   5572: 
                   5573:                    
                   5574:                 /* $ZB - last keystroke */
                   5575:                 case 'B':
                   5576:                    stcpy (a, zb);
                   5577:                    goto exec;
                   5578: 
                   5579:                    
                   5580:                 /* $ZCONTROLC flag */
                   5581:                 case 'C':
                   5582:                    a[0] = '0' | zcc;
                   5583:                    zcc = FALSE;
                   5584:                    a[1] = EOL;
                   5585:                    goto exec;
                   5586: 
                   5587: 
                   5588:                 ///* $ZX (number of columns) */
                   5589:                 //case 'X':
                   5590:                 //intstr (a, n_columns);
                   5591:                 // goto exec;
                   5592: 
                   5593:                 ///* $ZY (number of rows) */
                   5594:                 //case 'Y':
                   5595:                 //intstr (a, n_lines);
                   5596:                 //goto exec;
                   5597: 
                   5598:                 /* $ZERROR */
                   5599:                 case 'E':
                   5600:                    stcpy (a, zerror);
                   5601:                    goto exec;
                   5602: 
                   5603:                    
                   5604:                 /* $ZTRAP */
                   5605:                 case ZTRAP:
                   5606: 
                   5607:                    stcpy (a, ztrap[nstx]);
                   5608: 
                   5609:                    goto exec;
                   5610: 
                   5611:                    
                   5612:                 /* $ZPRECISION */
                   5613:                 case 'P':
                   5614:                    intstr (a, zprecise);
                   5615:                    goto exec;
                   5616: 
                   5617:                    
                   5618:                 /* $ZSYSTEM */
                   5619:                 case 'S':
                   5620:                    intstr (a, zsystem);
                   5621:                    goto exec;
                   5622: 
                   5623:                    
                   5624:                 /* $ZVERSION */
                   5625:                 case 'V':
                   5626:                    stcpy (&a[stcpy (a, "FreeM \201")], FREEM_VERSION_STR);
                   5627:                    goto exec;
                   5628: 
                   5629:                    
                   5630:                 /* $ZNAME */
                   5631:                 case 'N':
                   5632:                     /*
                   5633:                    i = 0;
                   5634:                    while ((a[i] = rou_name[i]) != EOL) {
                   5635:                        if (rou_name[i] == '.') break;
                   5636:                        i++;
                   5637:                    }
                   5638:                    a[i] = EOL;
                   5639:                     */
                   5640:                     stcpy (a, rou_name);
                   5641:                    goto exec;
                   5642: 
                   5643:                    
                   5644:                 /* $ZI, INTERRUPT ENABLE/DISABLE */
                   5645:                 case 'I':
                   5646:                    a[0] = '0' | breakon;
                   5647:                    a[1] = EOL;
                   5648:                    goto exec;
                   5649: 
                   5650:                    
                   5651:                 /* $ZDATE */                
                   5652:                 case 'D':
                   5653:                     {
                   5654:                        time_t ilong;
                   5655:                         struct tm *zdate_time;
                   5656:                         char zdf_key[50];
                   5657:                         char fmt_string[128];
                   5658: 
                   5659:                         snprintf (zdf_key, 49, "^$JOB\202%d\202ZDATE_FORMAT\201", pid);
                   5660:                         ssvn (get_sym, zdf_key, fmt_string);
                   5661:                         stcnv_c2m (fmt_string);
                   5662:                         
                   5663:                        ilong = time (0L);                      
                   5664: 
                   5665:                         zdate_time = localtime (&ilong);
                   5666: 
                   5667:                         strftime (a, 255, fmt_string, zdate_time);
                   5668:                         stcnv_c2m (a);                        
                   5669:                    }
                   5670:                    
                   5671:                    goto exec;
                   5672: 
                   5673:                    
                   5674:                 /* $ZTIME */
                   5675:                 case 'T':
                   5676:                     {
                   5677:                        time_t ilong;
                   5678:                         struct tm *zdate_time;
                   5679:                         
                   5680:                        ilong = time (0L);                      
                   5681: 
                   5682:                         zdate_time = localtime (&ilong);
                   5683: 
                   5684:                         strftime (a, 255, "%X", zdate_time);
                   5685:                         stcnv_c2m (a);                        
                   5686:                    }
                   5687:                    
                   5688:                    goto exec;
                   5689: 
                   5690:                    
                   5691:                 /* $ZJOB - value of JOB number (of father process) */
                   5692:                 case 'J':
                   5693:                    if (father) {
                   5694:                        lintstr (a, father);
                   5695:                    }
                   5696:                    else {
                   5697:                        stcpy (a, "\201");
                   5698:                    }
                   5699: 
                   5700:                    goto exec;
                   5701: 
                   5702:                    
                   5703:                 /* $ZORDER - value of physically next global reference @$ZO(@$ZR) */
                   5704:                 case 'O':
                   5705:                    global  (getnext, tmp, a);
                   5706: 
                   5707:                    if (merr () > 0) return;
                   5708: 
                   5709:                    goto exec;
                   5710: 
                   5711:                    
                   5712:                 /* $ZLOCAL - last local reference */
                   5713:                 case 'L':
                   5714:                    zname (a, zloc);
                   5715:                    if (merr () > OK) return;
                   5716: 
                   5717:                    goto exec;
                   5718: 
                   5719:                    
                   5720:                 /* $(Z)REFERENCE - last global reference */
                   5721:                 case 'r':
                   5722:                 case 'R':
                   5723:                    zname (a, zref);
                   5724:                    if (merr () > OK) return;
                   5725: 
                   5726:                    goto exec;
                   5727: 
                   5728:                    
                   5729:                 case 'C' - 64:
                   5730:                    stcpy (a, zmc);
                   5731:                    goto exec;      /* loadable match 'controls' */
                   5732: 
                   5733: 
                   5734:                case 'N' - 64:
                   5735:                    stcpy (a, zmn);
                   5736:                    goto exec;      /* loadable match 'numerics' */
                   5737: 
                   5738: 
                   5739:                case 'P' - 64:
                   5740:                    stcpy (a, zmp);
                   5741:                    goto exec;      /* loadable match 'punctuation' */
                   5742: 
                   5743: 
                   5744:                case 'A' - 64:
                   5745:                    stcpy (a, zmu);
                   5746:                    stcat (a, zml);
                   5747:                    goto exec;      /* loadable match 'alphabetic' */
                   5748: 
                   5749:                    
                   5750:                 case 'L' - 64:
                   5751:                    stcpy (a, zml);
                   5752:                    goto exec;      /* loadable match 'lowercase' */
                   5753: 
                   5754:                    
                   5755:                 case 'U' - 64:
                   5756:                    stcpy (a, zmu);
                   5757:                    goto exec;      /* loadable match 'uppercase' */
                   5758: 
                   5759:                    
                   5760:                 case 'E' - 64:
                   5761:                    for (i = NUL; i <= DEL; i++) a[i] = i;
                   5762:                    a[i] = EOL;
                   5763:                    goto exec;      /* 'loadable' match 'everything' */
                   5764: 
                   5765: 
                   5766:                case ' ':           /* user defined special variable */
                   5767: 
                   5768:                    udfsvn (get_sym, &tmp[2], a);
                   5769: 
                   5770:                    if (ierr <= OK) goto exec;
                   5771: 
                   5772:                    merr_raise (OK);
                   5773: 
                   5774:                     /* if not found in special variable table, process as extrinsic svn */
                   5775:                    /* $$^%Z... all uppercase */
                   5776: 
                   5777:                    f = 2;
                   5778: 
                   5779:                    while ((ch = tmp[f]) != EOL) {
                   5780: 
                   5781:                        if (ch >= 'a' && ch <= 'z') ch -= 32;
                   5782: 
                   5783:                        tmp[f++] = ch;
                   5784:                        
                   5785:                    }
                   5786:                    
                   5787:                    stcat (tmp, ++codptr);
                   5788: 
                   5789:                    code[0] = '$';
                   5790:                    code[1] = '^';
                   5791:                    code[2] = '%';
                   5792:                    code[3] = 'Z';
                   5793: 
                   5794:                    stcpy (&code[4], &tmp[2]);
                   5795: 
                   5796:                    codptr = code;
                   5797:                    f = '$';
                   5798:                    zexflag = TRUE;
                   5799:                    arg--;
                   5800: 
                   5801:                    goto extra_fun;
                   5802: 
                   5803:                 default:
                   5804:                    merr_raise (ILLFUN);
                   5805:                    return;
                   5806:                 }
                   5807:         /* end of specialvariable evaluation */
                   5808:         /******************************************************************************/
                   5809:        }
                   5810:        if (++spx >= PARDEPTH) {
                   5811:            merr_raise (STKOV);
                   5812:            return;
                   5813:        }
                   5814:        op_stck[spx] = f;
                   5815:        op_stck[++spx] = '$';
                   5816: 
                   5817:        
                   5818: text:
                   5819:        if (*(codptr + 1) != '@') {
                   5820:            f = op_stck[spx - 1];
                   5821:            /* f= (spx>0 ? op_stck[spx-1] : 0);
                   5822:             * if (f) */
                   5823: 
                   5824:            switch (f) {
                   5825:                case 't':           /* $TEXT is special */
                   5826: 
                   5827:                    if ((argstck[++arg] = a) >= s) {
                   5828:                        char   *bak;
                   5829: 
                   5830:                        bak = partition;
                   5831:                        if (getpmore () == 0) {
                   5832:                            merr_raise (STKOV);
                   5833:                            return;
                   5834:                        }
                   5835:                        
                   5836:                        a = a - bak + partition;
                   5837:                        b = b - bak + partition;
                   5838:                        
                   5839:                    }
                   5840:                    
                   5841:                    i = 0;
                   5842:                    
                   5843:                    while ((ch = *++codptr) != EOL) {
                   5844: 
                   5845:                        if (ch == ')') break;
                   5846: 
                   5847:                        if (ch == '+') {
                   5848: 
                   5849:                            a[i] = EOL;
                   5850: 
                   5851:                            if (++spx > PARDEPTH) {
                   5852:                                merr_raise (STKOV);
                   5853:                                return;
                   5854:                            }
                   5855:                            
                   5856:                            op_stck[spx] = OPERAND;
                   5857:                            goto comma;
                   5858: 
                   5859:                        }
                   5860: 
                   5861:                        if (ch == '^') {
                   5862:                            
                   5863:                            a[i] = EOL;
                   5864:                            
                   5865:                            if (++spx > PARDEPTH) {
                   5866:                                merr_raise (STKOV);
                   5867:                                return;
                   5868:                            }
                   5869:                            
                   5870:                            op_stck[spx] = OPERAND;
                   5871:                            a += i + 1;
                   5872:                            
                   5873:                            if (i == 0) {
                   5874:                                a[0] = '1';
                   5875:                                a[1] = EOL;
                   5876:                            }                       
                   5877:                            else {
                   5878:                                /* just routine name: */
                   5879:                                /* return first line  */
                   5880: 
                   5881:                                a[0] = EOL;
                   5882: 
                   5883:                            }
                   5884: 
                   5885:                            if ((argstck[++arg] = a) >= s) {
                   5886:                                char   *bak;
                   5887:                                
                   5888:                                bak = partition;
                   5889: 
                   5890:                                if (getpmore () == 0) {
                   5891:                                    merr_raise (STKOV);
                   5892:                                    return;
                   5893:                                }
                   5894:                                
                   5895:                                a = a - bak + partition;
                   5896:                                b = b - bak + partition;
                   5897:                                
                   5898:                            }
                   5899:                            
                   5900:                            if ((spx + 2) > PARDEPTH) {
                   5901:                                merr_raise (STKOV);
                   5902:                                return;
                   5903:                            }
                   5904:                            
                   5905:                            op_stck[++spx] = '$';
                   5906:                            op_stck[++spx] = OPERAND;
                   5907:                            
                   5908:                            goto uparrow;
                   5909:                        }
                   5910:                        
                   5911:                        if ((ch < '0' && ch != '%')     /* illegal character in $TEXT */
                   5912:                            ||ch > 'z' ||
                   5913:                            (ch < 'A' && ch > '9') ||
                   5914:                            (ch < 'a' && ch > 'Z')) {
                   5915: 
                   5916:                            merr_raise (INVREF);
                   5917:                            return;
                   5918:                            
                   5919:                        }
                   5920:                        
                   5921:                        a[i++] = ch;
                   5922: 
                   5923:                    }
                   5924:                    
                   5925:                    a[i] = EOL;
                   5926:                    codptr--;
                   5927:                    
                   5928:                    goto exec;
                   5929: 
                   5930:                case 'd':           /* $data() */
                   5931:                case 'o':           /* $order() */
                   5932:                case 'g':           /* $get() */
                   5933:                case 'n':           /* $next() */
                   5934:                case 'q':           /* $query() */
                   5935:                case 'O':           /* $zorder() */
                   5936:                case 'N':           /* $zname() */
                   5937:                case ZNEXT:     /* $znext() */
                   5938:                case ZPREVIOUS:     /* $zprevious() */
                   5939:                    {
                   5940: 
                   5941:                        if ((ch = *++codptr) >= 'A' && ch <= 'Z')
                   5942:                            goto scan_name;
                   5943: 
                   5944:                        if (ch >= 'a' && ch <= 'z')
                   5945:                            goto scan_name;
                   5946: 
                   5947:                        if (ch == '%' || ch == '^')
                   5948:                            goto scan_name;
                   5949:                        
                   5950:                        merr_raise (INVEXPR);
                   5951:                        
                   5952:                        return;
                   5953:                    }
                   5954:            }
                   5955:        }
                   5956:        
                   5957:        codptr++;
                   5958:        goto nextchr;
                   5959: 
                   5960:        
                   5961:        case ':':
                   5962:            /* colon: $select or delimiter */
                   5963:            if (spx < 2 || op_stck[spx - 2] != 's') {
                   5964:                
                   5965:                if (op_stck[1] == OPERAND && spx == 1)
                   5966:                    return;
                   5967: 
                   5968:                merr_raise (INVEXPR);
                   5969: 
                   5970:                return;
                   5971: 
                   5972:            }
                   5973:            
                   5974:            arg--;
                   5975:            spx--;
                   5976:            
                   5977:            if (tvexpr (a) == FALSE) {  /* skip next expr */
                   5978:                
                   5979:                i = 0;          /* quote */
                   5980:                j = 0;          /* bracket */
                   5981:                
                   5982:                for (;;) {
                   5983:                    
                   5984:                    ch = *++codptr;
                   5985:                    
                   5986:                    if (ch == '"') {
                   5987:                        toggle (i);
                   5988:                        continue;
                   5989:                    }
                   5990:                    
                   5991:                    if (i) {
                   5992:                        
                   5993:                        if (ch != EOL)
                   5994:                            continue;
                   5995: 
                   5996:                        merr_raise (QUOTER);
                   5997:                        return;
                   5998:                        
                   5999:                    }
                   6000:                    
                   6001:                    if (ch == ',' && !j) {
                   6002:                        codptr++;
                   6003:                        goto nextchr;
                   6004:                    }
                   6005:                    
                   6006:                    if (ch == '(') {
                   6007:                        j++;
                   6008:                        continue;
                   6009:                    }
                   6010:                    
                   6011:                    if (ch == ')') {
                   6012:                        
                   6013:                        if (j--)
                   6014:                            continue;
                   6015:                        
                   6016:                        merr_raise (SELER);
                   6017:                        return;
                   6018:                        
                   6019:                    }
                   6020:                    
                   6021:                    if (ch == EOL) {
                   6022:                        merr_raise (SELER);
                   6023:                        return;
                   6024:                    }
                   6025:                    
                   6026:                }
                   6027:            }
                   6028:            
                   6029:            codptr++;
                   6030:            goto nextchr;
                   6031: 
                   6032:     }
                   6033: 
                   6034: m_operator:
                   6035: 
                   6036:     if (extyp == ARGIND && spx == 1 /* && op_stck[2]!='(' */ )
                   6037:        return;
                   6038: 
                   6039:     f = op_stck[spx];
                   6040: 
                   6041:     if (++spx > PARDEPTH) {
                   6042:        merr_raise (STKOV);
                   6043:        return;
                   6044:     }
                   6045: 
                   6046:     
                   6047: op10:              /* entry for shortcut if first operator */
                   6048: 
                   6049:     /* check for NOT_OPERATOR */
                   6050:     if (ch == NOT) {
                   6051:        if (((ch = *++codptr) == '=' || ch == '<' || ch == '>' || ch == '?' || ch == '&' || ch == '!' || ch == '[' || ch == ']')) {
                   6052:            if (ch == ']' && *(codptr + 1) == ch) {
                   6053:                codptr++;
                   6054:                ch = SORTSAFTER;
                   6055:                if (*(codptr+1)=='=') { 
                   6056:                    codptr++; 
                   6057:                    ch=EQSORTS; 
                   6058:                }
                   6059:            }
                   6060:            if (ch == ']' && *(codptr + 1) == '=') {
                   6061:                codptr++;
                   6062:                ch = EQFOLLOWS;
                   6063:            }
                   6064:            if (ch == '!' && *(codptr + 1) == ch) {
                   6065:                codptr++;
                   6066:                ch = XOR;
                   6067:            }
                   6068:            
                   6069:            op_stck[spx] = SETBIT (ch);
                   6070:            if (ch == '?')
                   6071:                goto scan_pattern;
                   6072:            /*                     a+=stlen(a)+1; */
                   6073:            /* djw: does the while loop do the same as the commented out line above? */
                   6074:            /*      we should decide yes or no and get rid of the other code... */
                   6075: 
                   6076:            while (*a++ != EOL);
                   6077:            
                   6078:            codptr++;
                   6079:            goto nextchr;
                   6080:            
                   6081:        }
                   6082:        else {
                   6083:            op_stck[spx] = NOT;
                   6084:            goto nextchr;
                   6085:        }
                   6086:     }
                   6087: 
                   6088:     if (ch == '*' && *(codptr + 1) == ch) {
                   6089:        codptr++;
                   6090:        ch = POWER;
                   6091:     }
                   6092:     
                   6093:     if (ch == ']' && *(codptr + 1) == ch) {
                   6094:        codptr++;
                   6095:        ch = SORTSAFTER;
                   6096:     }
                   6097:     
                   6098:     if (ch == '<' && *(codptr + 1) == '=') {
                   6099:        codptr++;
                   6100:        ch = SETBIT ('>');
                   6101:     }
                   6102:     
                   6103:     if (ch == '>' && *(codptr + 1) == '=') {
                   6104:        codptr++;
                   6105:        ch = SETBIT ('<');
                   6106:     }
                   6107:     
                   6108:     if (ch == ']' && *(codptr + 1) == '=') {
                   6109:        codptr++;
                   6110:        ch = EQFOLLOWS;
                   6111:     }
                   6112:     
                   6113:     if (ch == SORTSAFTER && *(codptr + 1) == '=') {
                   6114:        codptr++;
                   6115:        ch = EQSORTS;
                   6116:     }
                   6117:     
                   6118:     if (ch == '$')
                   6119:        ch = MAXOP;
                   6120:     
                   6121:     if (ch == '^') {
                   6122:        codptr--;
                   6123:        return;
                   6124:     }
                   6125: 
                   6126:     if ((op_stck[spx] = ch) != PATTERN) {
                   6127: 
                   6128:        if (f == OPERAND) while (*a++ != EOL);       /* binary operator */
                   6129: 
                   6130:        codptr++;
                   6131:        goto nextchr;
                   6132:     }
                   6133:     
                   6134: scan_pattern:
                   6135:     if ((ch = *++codptr) == INDIRECT) { /*  a+=stlen(a)+1;  */
                   6136:        while (*a++ != EOL) ;
                   6137:        goto m_operator;
                   6138:     }
                   6139:     
                   6140:     if ((ch > '9' || ch < '0') && (ch != '.')) {
                   6141:        merr_raise (INVEXPR);
                   6142:        return;
                   6143:     }
                   6144:     
                   6145:     tmp[0] = ch;
                   6146:     i = 1;
                   6147:     f = '1';                /* 'previous' character */
                   6148:     j = 0;              /* point flag */
                   6149:     group = 0;              /* grouped pattern match */
                   6150: 
                   6151:     while ((ch = *++codptr) != EOL) {
                   6152: 
                   6153:        if ((ch >= '0') && (ch <= '9')) {
                   6154: 
                   6155:            tmp[i++] = ch;
                   6156:            f = '1';
                   6157: 
                   6158:            continue;
                   6159:            
                   6160:        }
                   6161:        
                   6162:     if (ch == '.') {
                   6163: 
                   6164:        if (j) {
                   6165:            merr_raise (INVEXPR);
                   6166:            return;
                   6167:        }
                   6168:        
                   6169:        j++;
                   6170:        tmp[i++] = ch;
                   6171:        f = '1';
                   6172:        
                   6173:        continue;
                   6174:     }
                   6175:     
                   6176:     j = 0;
                   6177:     if (ch == NOT) {        /* negation of pattern class ? */
                   6178: 
                   6179:        ch = *(codptr + 1);
                   6180: 
                   6181:        if ((ch == '"') || (ch >= 'A' && ch <= 'Z') || (ch >= 'a' && ch <= 'z')) {
                   6182:            tmp[i++] = NOT;
                   6183:        }
                   6184:        else {
                   6185:            ch = NOT;
                   6186:        }
                   6187: 
                   6188:     }
                   6189: 
                   6190:     if (ch == '"') {
                   6191: 
                   6192:        if (f != '1' && f != 'A') {
                   6193:            merr_raise (INVEXPR);
                   6194:            return;
                   6195:        }
                   6196:        
                   6197:        for (;;) {
                   6198:            
                   6199:            tmp[i++] = ch;
                   6200: 
                   6201:            if ((ch = *++codptr) == EOL) {
                   6202:                merr_raise (QUOTER);
                   6203:                return;
                   6204:            }
                   6205:            
                   6206:            if (ch == '"') {
                   6207:                
                   6208:                if ((f = *(codptr + 1)) != '"') {
                   6209:                    ch = DELIM;
                   6210:                    break;
                   6211:                }
                   6212:                
                   6213:                codptr++;
                   6214:            }
                   6215:        }
                   6216:        
                   6217:        tmp[i++] = ch;
                   6218:        f = '"';
                   6219:        
                   6220:        continue;
                   6221:        
                   6222:     }
                   6223:     
                   6224:     if (ch == '(') {
                   6225: 
                   6226:        if (f != '1') {
                   6227:            merr_raise (INVEXPR);
                   6228:            return;
                   6229:        }
                   6230:        
                   6231:        group++;
                   6232:        f = '(';
                   6233:        tmp[i++] = ch;
                   6234:        
                   6235:        continue;
                   6236:        
                   6237:     }
                   6238:     
                   6239:     if (group && (ch == ',' || ch == ')')) {
                   6240: 
                   6241:        if ((f == '1') || (f == '(')) {
                   6242:            merr_raise (INVEXPR);
                   6243:            return;
                   6244:        }
                   6245:        
                   6246:        if (ch == ',') {
                   6247: 
                   6248:            f = '(';
                   6249:            tmp[i++] = ch;
                   6250:            
                   6251:            continue;
                   6252: 
                   6253:        }
                   6254:        
                   6255:     if (ch == ')') {
                   6256:        group--;
                   6257:        tmp[i++] = ch;
                   6258: 
                   6259:        continue;
                   6260:     }
                   6261:     
                   6262:     } /* ??? formatting ??? */
                   6263:     
                   6264:     if (ch >= 'A' && ch <= 'Z') ch += 32;           /* lower case conversion */
                   6265: 
                   6266:     if (ch == 'z') {        /* loadable match, store as uppercase chars */
                   6267: 
                   6268:        if (standard) {
                   6269:            merr_raise (NOSTAND);
                   6270:            return;
                   6271:        }
                   6272:        
                   6273:        ch = *++codptr;
                   6274: 
                   6275:        if (ch == '"') {
                   6276:            
                   6277:            if (f != '1') {
                   6278:                merr_raise (INVEXPR);
                   6279:                return;
                   6280:            }
                   6281:            
                   6282:            codptr--;
                   6283:            tmp[i++] = 'z';
                   6284:            
                   6285:            continue;
                   6286:            
                   6287:        }
                   6288:        
                   6289:        if (ch == '(') {
                   6290: 
                   6291:            if (f != '1') {
                   6292:                merr_raise (INVEXPR);
                   6293:                return;
                   6294:            }
                   6295:            
                   6296:            codptr--;
                   6297:            continue;
                   6298:        }
                   6299:        
                   6300:        if (ch >= 'A' && ch <= 'Z') ch += 32;       /* lower case conversion */
                   6301: 
                   6302:        if (ch != 'e')
                   6303:            j = 1;          /* process 'ze' as 'e' */
                   6304:     }
                   6305: 
                   6306:     if (ch != 'c' && ch != 'n' &&  ch != 'p' && ch != 'a' && ch != 'l' && ch != 'u' && ch != 'e') break;
                   6307: 
                   6308:     if ((f != '1') && (f != 'A')) {
                   6309:        merr_raise (INVEXPR);
                   6310:        return;
                   6311:     }
                   6312:     
                   6313:     if (j) {
                   6314:        ch -= 32;
                   6315:        j = 0;
                   6316:     }
                   6317:     
                   6318:     tmp[i++] = ch;
                   6319:     f = 'A';
                   6320: 
                   6321:     }
                   6322: 
                   6323:     if ((f == '1') || group) {
                   6324:        merr_raise (INVEXPR);
                   6325:        return;
                   6326:     }
                   6327:     
                   6328:     tmp[i] = EOL;
                   6329: 
                   6330:     if ((*a = pattern (a, tmp)) > '1') {
                   6331:        merr_raise (INVEXPR);
                   6332:        return;
                   6333:     }
                   6334:     
                   6335:     if (UNSIGN (op_stck[spx--]) & 0200) toggle (*a);
                   6336:     
                   6337:     *(a + 1) = EOL;
                   6338: 
                   6339:     goto next10;
                   6340: 
                   6341:     /* process values on stack */
                   6342: 
                   6343:     
                   6344: exec:
                   6345: 
                   6346:     if (spx == 0) {
                   6347: 
                   6348:        if ((ch = *++codptr) == EOL || ch == SP || ch == ',' || ch == ':' || (ch == '^' && (extyp == LABEL || extyp == OFFSET))) return;
                   6349: 
                   6350:        op_stck[++spx] = OPERAND;
                   6351: 
                   6352:        goto next10;
                   6353: 
                   6354:     }
                   6355: 
                   6356:     f = op_stck[spx];
                   6357: 
                   6358:     if (f == ARRAY || f == '(') {
                   6359: 
                   6360:        if (++spx > PARDEPTH) {
                   6361:            merr_raise (STKOV);
                   6362:            return;
                   6363:        }
                   6364:        
                   6365:        op_stck[spx] = OPERAND;
                   6366:        codptr++;
                   6367:        
                   6368:        goto nextchr;
                   6369:        
                   6370:     }
                   6371:     
                   6372:     /* process operators */
                   6373: 
                   6374: nxt_expr:
                   6375: 
                   6376:     if (f == '$') {         /* push 'OPERAND' on stack */
                   6377:        
                   6378:        op_stck[++spx] = OPERAND;
                   6379:        codptr++;
                   6380: 
                   6381:        goto nextchr;
                   6382:        
                   6383:     }
                   6384:     
                   6385:     if (f == OPERAND) {
                   6386:        merr_raise (MISSOP);
                   6387:        return;
                   6388:     }
                   6389:     
                   6390:     if (op_stck[--spx] == OPERAND) {    /* binary operators */
                   6391: 
                   6392:        b = a;
                   6393:        a = argstck[--arg];
                   6394: 
                   6395:        switch (f & 0177) {     /* binary operators, NOT OMITTED */
                   6396: 
                   6397:            case PLUS:
                   6398: 
                   6399:                stcpy (tmp, b);
                   6400: 
                   6401: plus01:
                   6402: 
                   6403:                atyp = numlit (a);
                   6404:                btyp = numlit (tmp);
                   6405:                
                   6406: #ifdef EUR2DEM
                   6407:                
                   6408:                if (atyp != btyp) {
                   6409: 
                   6410:                    char    tmp2[256];
                   6411: 
                   6412:                    if ((atyp == 0) && (a[0] == '0')) atyp = btyp;    /* zero is any currency */
                   6413:                    if ((btyp == 0) && (tmp[0] == '0')) btyp = atyp;    /* zero is any currency */
                   6414: 
                   6415:                    if (atyp && btyp) {
                   6416:                        
                   6417:                        if (atyp > 1) {
                   6418:                            stcpy (tmp2, EUR2WHR[atyp]);
                   6419:                            mul (tmp, tmp2);
                   6420:                        }
                   6421:                        
                   6422:                        if (btyp > 1) {
                   6423:                            zprecise += 4;
                   6424:                            stcpy (tmp2, EUR2WHR[btyp]);
                   6425:                            mdiv (tmp, tmp2, '/');
                   6426:                            zprecise -= 4;
                   6427:                        }
                   6428:                        
                   6429:                    }
                   6430:                    else if (atyp != btyp && typemmflag) {
                   6431:                        merr_raise (TYPEMISMATCH);
                   6432:                        return;
                   6433:                    }
                   6434:                    
                   6435:                }
                   6436:                
                   6437: #endif /* EUR2DEM */
                   6438:                
                   6439:                add (a, tmp);
                   6440: plus02:
                   6441: 
                   6442: #ifdef EUR2DEM
                   6443: 
                   6444:                if (atyp == 0) goto next05;
                   6445:                if (atyp != btyp) cond_round (a, zprecise + 2);
                   6446:                
                   6447:                stcat (a, WHR[atyp]);
                   6448: 
                   6449: #endif /* EUR2EUR */
                   6450: 
                   6451:                goto next05;
                   6452: 
                   6453:                
                   6454:            case MINUS:
                   6455: 
                   6456:                tmp[0] = '-';
                   6457:                stcpy (&tmp[1], b);
                   6458:                goto plus01;
                   6459: 
                   6460:                
                   6461:            case MULTIPLY:
                   6462: 
                   6463:                stcpy (tmp, b);
                   6464:                atyp = numlit (a);
                   6465:                btyp = numlit (tmp);
                   6466: #ifdef EUR2DEM
                   6467:                if (btyp && (atyp == 0)) {
                   6468:                    atyp = btyp;
                   6469:                    btyp = 0;
                   6470:                }
                   6471:                
                   6472:                if (atyp && btyp) {
                   6473: 
                   6474:                    if (typemmflag) {
                   6475:                        merr_raise (TYPEMISMATCH);
                   6476:                        return;
                   6477:                    }
                   6478:                    
                   6479:                    atyp = btyp = 0;
                   6480:                    
                   6481:                }
                   6482:                
                   6483: #endif /* EUR2DEM */
                   6484: 
                   6485:                mul (a, tmp);
                   6486: 
                   6487: #ifdef EUR2DEM
                   6488:                
                   6489:                if (atyp == 0) goto next05;
                   6490: 
                   6491:                cond_round (a, zprecise + 2);
                   6492:                stcat (a, WHR[atyp]);
                   6493:                
                   6494: #endif /* EUR2DEM */
                   6495: 
                   6496:                goto next05;
                   6497: 
                   6498:                
                   6499:            case DIVIDE:
                   6500:            case INTDIVIDE:
                   6501:            case MODULO:
                   6502: 
                   6503:                stcpy (tmp, b);
                   6504:                atyp = numlit (a);
                   6505:                btyp = numlit (tmp);
                   6506: 
                   6507: #ifdef EUR2DEM
                   6508:                if (atyp != btyp) {
                   6509:                     char    tmp2[256];
                   6510: 
                   6511:                     if (atyp && btyp) {
                   6512:                         
                   6513:                         if (f == MODULO) {
                   6514: 
                   6515:                             if (atyp > 1) {
                   6516:                                 stcpy (tmp2, EUR2WHR[atyp]);
                   6517:                                 mul (tmp, tmp2);
                   6518:                             }
                   6519: 
                   6520:                             if (btyp > 1) {
                   6521:                                 stcpy (tmp2, EUR2WHR[btyp]);
                   6522:                                 mdiv (tmp, tmp2, '/');
                   6523:                             }
                   6524:                             
                   6525:                         }
                   6526:                         else {
                   6527:                             
                   6528:                             if (atyp > 1) {
                   6529:                                 stcpy (tmp2, EUR2WHR[atyp]);
                   6530:                                 mul (tmp, tmp2);
                   6531:                             }
                   6532: 
                   6533:                             if (btyp > 1) {
                   6534:                                 stcpy (tmp2, EUR2WHR[btyp]);
                   6535:                                 mul (a, tmp2);
                   6536:                             }
                   6537: 
                   6538:                             atyp = btyp = 0;
                   6539: 
                   6540:                         }
                   6541:                         
                   6542:                     } else if (btyp && typemmflag && (*a != '0' || f == MODULO)) {
                   6543:                         merr_raise (TYPEMISMATCH);                        
                   6544:                         return;
                   6545:                     }
                   6546:                 }
                   6547:                 else if (f != MODULO) {
                   6548:                     atyp = 0;
                   6549:                 }
                   6550:                 
                   6551: #endif /* EUR2DEM */
                   6552:                 
                   6553:                 if (tmp[0] == '0') {
                   6554:                     merr_raise (M9);
                   6555:                     return;
                   6556:                 }
                   6557:                 
                   6558:                 if (atyp != btyp) zprecise += 4;
                   6559:                 
                   6560:                 mdiv (a, tmp, f);
                   6561: 
                   6562:                 if (atyp != btyp) zprecise -= 4;
                   6563: 
                   6564:                 goto plus02;
                   6565: 
                   6566:                 
                   6567:             case CONCATENATE:
                   6568: 
                   6569:                 if (stcat (a, b)) goto next05;
                   6570:                 
                   6571:                 merr_raise (M75);
                   6572:                 return;
                   6573: 
                   6574:                 
                   6575:             case EQUAL:
                   6576: 
                   6577:                 if (stcmp (a, b)) {
                   6578:                     *a = '0';
                   6579:                 }
                   6580:                 else {
                   6581:                     *a = '1';
                   6582:                 }
                   6583:                 
                   6584:                 /* common entry point to reverse the logical value */
                   6585:                 /* of current expression               */
                   6586: 
                   6587: 
                   6588: notop:
                   6589:                 if (f & 0200) toggle (*a);        /* NOT_OPERAND */
                   6590: 
                   6591:                 a[1] = EOL;
                   6592:                 
                   6593:                 goto next05;
                   6594: 
                   6595:                 
                   6596:             case GREATER:
                   6597: 
                   6598:                 stcpy (tmp, b);
                   6599:                 atyp = numlit (a);
                   6600:                 btyp = numlit (tmp);
                   6601:                 
                   6602: #ifdef EUR2DEM
                   6603:                 if (atyp != btyp) {
                   6604:                     char tmp2[256];
                   6605: 
                   6606:                     if ((atyp == 0) && (a[0] == '0')) atyp = btyp;    /* zero is any currency */
                   6607:                     if ((btyp == 0) && (tmp[0] == '0')) btyp = atyp;    /* zero is any currency */
                   6608: 
                   6609:                     if (atyp && btyp) {
                   6610:                         
                   6611:                         if (atyp > 1) {
                   6612:                             stcpy (tmp2, EUR2WHR[atyp]);
                   6613:                             mul (tmp, tmp2);
                   6614:                         }
                   6615:                         
                   6616:                         if (btyp > 1) {
                   6617:                             stcpy (tmp2, EUR2WHR[btyp]);
                   6618:                             mul (a, tmp2);
                   6619:                         }
                   6620:                         
                   6621:                         cond_round (a, zprecise + 2);
                   6622:                         cond_round (tmp, zprecise + 2);
                   6623:                         
                   6624:                     }
                   6625:                     else if (atyp != btyp && typemmflag) {
                   6626:                         merr_raise (TYPEMISMATCH);
                   6627:                         return;
                   6628:                     }
                   6629:                 }
                   6630: #endif /* EUR2DEM */
                   6631:                 
                   6632:                 if (comp (tmp, a)) {
                   6633:                     *a = '1';
                   6634:                 }
                   6635:                 else {
                   6636:                     *a = '0';
                   6637:                 }
                   6638:                 
                   6639:                 goto notop;
                   6640: 
                   6641:                 
                   6642:             case LESS:
                   6643: 
                   6644:                 stcpy (tmp, b);
                   6645:                 atyp = numlit (a);
                   6646:                 btyp = numlit (tmp);
                   6647: 
                   6648: #ifdef EUR2DEM
                   6649:                 if (atyp != btyp) {
                   6650:                     char tmp2[256];
                   6651: 
                   6652:                     if ((atyp == 0) && (a[0] == '0')) atyp = btyp;    /* zero is any currency */
                   6653:                     if ((btyp == 0) && (tmp[0] == '0')) btyp = atyp;    /* zero is any currency */
                   6654: 
                   6655:                     if (atyp && btyp) {
                   6656: 
                   6657:                         if (atyp > 1) {
                   6658:                             stcpy (tmp2, EUR2WHR[atyp]);
                   6659:                             mul (tmp, tmp2);
                   6660:                         }
                   6661: 
                   6662:                         if (btyp > 1) {
                   6663:                             stcpy (tmp2, EUR2WHR[btyp]);
                   6664:                             mul (a, tmp2);
                   6665:                         }
                   6666: 
                   6667:                         cond_round (a, zprecise + 2);
                   6668:                         cond_round (tmp, zprecise + 2);
                   6669:                         
                   6670:                     }
                   6671:                     else if (atyp != btyp && typemmflag) {
                   6672:                         merr_raise (TYPEMISMATCH);
                   6673:                         return;
                   6674:                     }
                   6675:                     
                   6676:                 }
                   6677:                 
                   6678: #endif /* EUR2DEM */
                   6679:                 if (comp (a, tmp)) {
                   6680:                     *a = '1';
                   6681:                 }
                   6682:                 else {
                   6683:                     *a = '0';
                   6684:                 }
                   6685:                 
                   6686:                 goto notop;
                   6687: 
                   6688:                 
                   6689:             case AND:
                   6690: 
                   6691:                 if (tvexpr (a)) {
                   6692:                     tvexpr (b);
                   6693:                     *a = *b;
                   6694:                 }
                   6695:                 
                   6696:                 goto notop;
                   6697: 
                   6698:                 
                   6699:             case OR:
                   6700: 
                   6701:                 ch = tvexpr (b);        /* beware case of a="" */
                   6702:                 
                   6703:                 if (tvexpr (a) == FALSE && ch) *a = '1';
                   6704:                 
                   6705:                 goto notop;
                   6706: 
                   6707:                 
                   6708:             case XOR:
                   6709:                 
                   6710:                 ch = tvexpr (b);            /* beware case of a="" */
                   6711:                 *a = (tvexpr(a) == ch) ? '0' : '1';
                   6712: 
                   6713:                 goto notop;
                   6714: 
                   6715:                 
                   6716:             case CONTAINS:
                   6717: 
                   6718:                 if (*b == EOL || find (a, b)) {
                   6719:                     *a = '1';
                   6720:                 }
                   6721:                 else {
                   6722:                     *a = '0';
                   6723:                 }
                   6724:                 
                   6725:                 goto notop;     
                   6726: 
                   6727:                 
                   6728:             case EQFOLLOWS:
                   6729:                 
                   6730:                 if (stcmp (a, b) == 0) {
                   6731:                     a[0] = '1';
                   6732:                     goto notop;
                   6733:                 }
                   6734: 
                   6735:                 
                   6736:             case FOLLOWS:
                   6737: 
                   6738:                 if (*b == EOL) {
                   6739: 
                   6740:                     if (*a == EOL) {
                   6741:                         *a = '0';
                   6742:                     }
                   6743:                     else {
                   6744:                         *a = '1';
                   6745:                     }
                   6746:                     
                   6747:                 }               
                   6748:                 else if (stcmp (a, b) <= 0) {     /* frequent special case */
                   6749:                     *a = '0';
                   6750:                 }
                   6751:                 else {
                   6752:                     *a = '1';
                   6753:                 }
                   6754:                 
                   6755:                 goto notop;
                   6756: 
                   6757:                 
                   6758:             case POWER:
                   6759: 
                   6760:                 stcpy (tmp, b);
                   6761:                 numlit (a);
                   6762:                 numlit (tmp);
                   6763:                 power (a, tmp);
                   6764:                 goto next05;
                   6765: 
                   6766:                 
                   6767:             case EQSORTS:
                   6768:                 
                   6769:                 if (stcmp (a, b) == 0) {
                   6770:                     a[0] = '1';
                   6771:                     goto notop;
                   6772:                 }
                   6773: 
                   6774:                 
                   6775:             case SORTSAFTER:
                   6776: 
                   6777:                 if (collate (b, a)) {
                   6778:                     *a = '1';
                   6779:                 }
                   6780:                 else {
                   6781:                     *a = '0';
                   6782:                 }
                   6783:                 
                   6784:                 goto notop;
                   6785: 
                   6786:                 
                   6787:             case MAXOP:
                   6788: 
                   6789: #ifdef NOSCRAMBL
                   6790:                 if (standard) {
                   6791:                     merr_raise (NOSTAND);
                   6792:                     return;
                   6793:                 }                
                   6794: #endif /* NOSCRAMBL */
                   6795:                 
                   6796:                 stcpy (tmp, b);
                   6797:                 numlit (tmp);
                   6798:                 numlit (a);
                   6799:                 
                   6800:                 if (comp (a, tmp)) stcpy (a, tmp);
                   6801:                 
                   6802:                 goto next05;
                   6803: 
                   6804:                 
                   6805:             case MINOP:
                   6806: 
                   6807: #ifdef NOSCRAMBL
                   6808:                 if (standard) {
                   6809:                     merr_raise (NOSTAND);
                   6810:                     return;
                   6811:                 }                
                   6812: #endif /* NOSCRAMBL */
                   6813: 
                   6814:                 stcpy (tmp, b);
                   6815:                 numlit (tmp);
                   6816:                 numlit (a);
                   6817:                 
                   6818:                 if (comp (a, tmp) == 0) stcpy (a, tmp);
                   6819:                 
                   6820:                 goto next05;
                   6821: 
                   6822:                 
                   6823:             default:
                   6824:                 merr_raise (ILLOP);
                   6825:                 return;
                   6826: 
                   6827:         }
                   6828:     }                   /* end binary operators */
                   6829: 
                   6830:     switch (f) {
                   6831: 
                   6832:         case INDIRECT:
                   6833: 
                   6834: 
                   6835: indirect:
                   6836: 
                   6837:             if (*++codptr == '@' && *(codptr + 1) == '(') {
                   6838: 
                   6839:                 if (a[stlen (a) - 1] == ')') {
                   6840:                     codptr += 2;
                   6841:                     a[stlen (a) - 1] = ',';
                   6842:                 }
                   6843:                 else {
                   6844:                     codptr++;
                   6845:                 }
                   6846: 
                   6847:             }
                   6848:             
                   6849:             stcpy (a + stlen (a), codptr);
                   6850:             stcpy (&code[1], a);
                   6851:             codptr = code;
                   6852:             *codptr = SP;
                   6853:             arg--;
                   6854:             
                   6855:             if (spx <= 0) {
                   6856:                 op_stck[0] = 0;
                   6857:                 codptr++;
                   6858: 
                   6859:                 goto nextchr;
                   6860:             }
                   6861:             
                   6862:             if ((op_stck[spx] & 0177) != PATTERN) goto text;
                   6863: 
                   6864:             a = argstck[arg];
                   6865:             goto scan_pattern;
                   6866: 
                   6867:             
                   6868:         case MINUS:         /* unary minus */
                   6869: 
                   6870:             b = a + stlen (a) + 1;
                   6871: 
                   6872:             while (b > a) {
                   6873:                 *b = *(b - 1);
                   6874:                 b--;
                   6875:             }
                   6876:             
                   6877:             *a = '-';
                   6878: 
                   6879:             
                   6880:         case PLUS:              /* unary plus */
                   6881: 
                   6882:             atyp = numlit (a);
                   6883:             
                   6884: #ifdef EUR2DEM
                   6885:             if (atyp) {
                   6886:                 stcat (a, WHR[atyp]);
                   6887:             }
                   6888: #endif /* EUR2DEM */
                   6889:             goto nxt_operator;
                   6890: 
                   6891:             
                   6892:         case NOT:               /* unary not */
                   6893: 
                   6894:             tvexpr (a);
                   6895:             toggle (*a);
                   6896:             
                   6897:             goto nxt_operator;
                   6898: 
                   6899:             
                   6900:         default:
                   6901:             merr_raise (MISSOPD);
                   6902:             return;
                   6903:             
                   6904:     }                   /* end unary operators */
                   6905: 
                   6906:     
                   6907: }                   /* end expr() */
                   6908: 
                   6909: 
                   6910: /******************************************************************************/
                   6911: /* $ZSYNTAX */
                   6912: /* a simple syntax check.                                    */
                   6913: /* $ZSYNTAX expects one argument. If it finds no fault, it   */
                   6914: /* returns an empty string. Otherwise it returns a pair of   */
                   6915: /* integers separated by a comma. The first number indicates */
                   6916: /* the position where the error has been found. The second   */
                   6917: /* number returns an error code (same meaning as in $ZE)     */
                   6918: /* only the most frequent errors are searched for:           */
                   6919: /* - illegal commands                                        */
                   6920: /* - not matching brackets                                   */
                   6921: /* - not matching quotes                                     */
                   6922: /* - missing or surplus arguments                            */
                   6923: /* - surplus commata                                         */
                   6924: 
                   6925: void zsyntax(char *a)
                   6926: {
                   6927:     register int i;
                   6928:     register int j;
                   6929:     register int f;
                   6930:     register int ch;
                   6931:     
                   6932:     char    tmp[256];
                   6933:     char   *b;
                   6934:     short   cmnd;
                   6935:     short   forline;            /* flag: FOR encountered */
                   6936: 
                   6937:     b = a;
                   6938:     forline = FALSE;
                   6939:     while ((ch = *b) == '.' || ch == SP)
                   6940:         b++;                /* level points for blockstr. */
                   6941:     while ((ch = *b++) != EOL) {    /* scan command */
                   6942:         if (ch == ';' || ch == '!')
                   6943:             break;          /* comment or unix_call */
                   6944:         if (ch >= 'A' && ch <= 'Z')
                   6945:             ch += 32;           /* uppercase to lowercase */
                   6946:         f = ch;
                   6947:         cmnd = f;
                   6948:         if (ch < 'b' || ch > 'z' || /* illegal char in cmmd position */
                   6949:             ch == 'm' || ch == 't' || ch == 'y') {
                   6950:             j = CMMND;
                   6951: 
                   6952:             
                   6953: zserr:
                   6954: 
                   6955:             intstr (a, b - a);
                   6956:             a[i = stlen (a)] = ',';
                   6957: 
                   6958:             merr_num_to_code (j, &a[++i]);
                   6959:             stcnv_c2m (a);
                   6960:             
                   6961:             return;
                   6962:         }
                   6963:         i = 1;
                   6964:         while (((tmp[++i] = ch = *b++) != EOL) &&   /* check full command name */
                   6965:                ((ch >= 'A' && ch <= 'Z') ||
                   6966:                 (ch >= 'a' && ch <= 'z')))
                   6967:             if (ch < 'a')
                   6968:                 tmp[i] = ch + 32;
                   6969:         if (f != 'z') {
                   6970:             if (i > 2) {
                   6971:                 tmp[0] = SP;
                   6972:                 tmp[1] = f;
                   6973:                 tmp[i] = SP;
                   6974:                 tmp[++i] = EOL;
                   6975:                 if (find (
                   6976:                         " break close do else for goto hang halt if job kill lock new open quit read set use view write xecute "
                   6977:                         ,tmp) == FALSE) {
                   6978:                     j = CMMND;
                   6979:                     goto zserr;
                   6980:                 }
                   6981:             }
                   6982:         }
                   6983:         i = 0;              /* quote */
                   6984:         j = 0;              /* bracket */
                   6985:         if (ch == ':') {        /*  scan postcond */
                   6986:             while ((ch = *b++) != EOL) {
                   6987:                 if (ch == '*' && *b == ch)
                   6988:                     b++;        /* exponentiation */
                   6989:                 if (ch == '!' && *b == ch)
                   6990:                     b++;                /* XOR */
                   6991:                 if (ch == ']') {
                   6992:                     if (*b == ch)
                   6993:                         b++;        /* SORTSAFTER */
                   6994:                     if (*b == '=')
                   6995:                         b++;        /* EQFOLLOWS or EQSORTS */
                   6996:                 }
                   6997:                 if (ch == '"') {
                   6998:                     toggle (i);
                   6999:                     continue;
                   7000:                 }
                   7001:                 if (i)
                   7002:                     continue;
                   7003:                 if (ch == SP)
                   7004:                     break;
                   7005:                 if (ch == '$') {
                   7006:                     ch = *b++;
                   7007:                     if (ch >= 'A' && ch <= 'Z')
                   7008:                         ch += 32;
                   7009:                     if ((ch < 'a' || ch > 'z' || ch == 'b' ||
                   7010:                          ch == 'm' || ch == 'u' || ch == 'w') && ch != '$') {
                   7011:                         j = ILLFUN;
                   7012:                         goto zserr;
                   7013:                     }
                   7014:                     if (ch == 's') {    /* $SELECT */
                   7015:                         int     xch,
                   7016:                             xi,
                   7017:                             xj;
                   7018:                         char   *xb;
                   7019:                         int     sfl;
                   7020:                         
                   7021:                         xi = 0;     /* quotes */
                   7022:                         xj = 0;     /* brackets */
                   7023:                         xb = b;     /* do not change old 'b' pointer */
                   7024:                         sfl = TRUE; /* first ':' expected */
                   7025:                         for (;;)
                   7026:                         {
                   7027:                             if ((xch = *xb++) == EOL ||
                   7028:                                 ((xch == SP || xch == ',') && xj == 0)) {
                   7029:                                 if (xj == 0)
                   7030:                                     break;  /* $STORAGE */
                   7031:                                 j = SELER;
                   7032:                                 b = xb;
                   7033:                                 goto zserr;
                   7034:                             }
                   7035:                             if (xch == '"') {
                   7036:                                 toggle (xi);
                   7037:                                 continue;
                   7038:                             }
                   7039:                             if (xi)
                   7040:                                 continue;
                   7041:                             if (xch == ':') {
                   7042:                                 if (xj > 1)
                   7043:                                     continue;
                   7044:                                 if (sfl) {
                   7045:                                     sfl = FALSE;
                   7046:                                     continue;
                   7047:                                 }
                   7048:                                 j = SELER;
                   7049:                                 b = xb;
                   7050:                                 goto zserr;
                   7051:                             }
                   7052:                             if (xch == ',') {
                   7053:                                 if (xj > 1)
                   7054:                                     continue;
                   7055:                                 if (!sfl) {
                   7056:                                     sfl = TRUE;
                   7057:                                     continue;
                   7058:                                 }
                   7059:                                 j = SELER;
                   7060:                                 b = xb;
                   7061:                                 goto zserr;
                   7062:                             }
                   7063:                             if (xch == '(') {
                   7064:                                 xj++;
                   7065:                                 continue;
                   7066:                             }
                   7067:                             if (xch == ')') {
                   7068:                                 if ((xj--) > 1)
                   7069:                                     continue;
                   7070:                                 if (sfl) {
                   7071:                                     j = SELER;
                   7072:                                     b = xb;
                   7073:                                     goto zserr;
                   7074:                                 }
                   7075:                                 break;
                   7076:                             }
                   7077:                         }
                   7078:                     }
                   7079: /* end select check */
                   7080:                     else if (ch == 'd' ||   /* $DATA */
                   7081:                              ch == 'g' ||    /* $GET */
                   7082:                              ch == 'o' ||    /* $ORDER */
                   7083:                              ch == 'n' ||    /* $NEXT */
                   7084:                              ch == 'q' ||    /* $QUERY */
                   7085:                              ch == 'i') {    /* $INCREMENT */
                   7086:                         int     xch,
                   7087:                             xi,
                   7088:                             xj;
                   7089:                         char   *xb;
                   7090:                         
                   7091:                         xb = b;     /* do not change old 'b' pointer */
                   7092: /* skip name */
                   7093:                         while (((xch = (*xb)) >= 'A' && xch <= 'Z') ||
                   7094:                                (xch >= 'a' && xch <= 'z'))
                   7095:                             xb++;
                   7096:                         if (xch == '(') {
                   7097:                             if ((xch = (*++xb)) == '^' || xch == '%' ||
                   7098:                                 (xch >= 'A' && xch <= 'Z') ||
                   7099:                                 (xch >= 'a' && xch <= 'z')) {
                   7100:                                 xi = xch;
                   7101:                                 if (xch == '^' && *(xb + 1) == '%')
                   7102:                                     xb++;
                   7103:                                 while
                   7104:                                     (((xch = (*++xb)) >= 'A' && xch <= 'Z') ||
                   7105:                                      (xch >= 'a' && xch <= 'z') ||
                   7106:                                      (xch >= '0' && xch <= '9') ||
                   7107:                                      (xch == '.') ||
                   7108:                                      (xch == '/' && xi <= '^') ||
                   7109:                                      (xch == '%' && *(xb - 1) == '/')) ;
                   7110:                             } else {
                   7111:                                 if (xch == '@')
                   7112:                                     continue;
                   7113:                                 j = INVEXPR;
                   7114:                                 b = xb;
                   7115:                                 goto zserr;
                   7116:                             }
                   7117:                             xi = 0; /* quotes */
                   7118:                             xj = 0; /* brackets */
                   7119:                             for (;;)
                   7120:                             {
                   7121:                                 xch = *xb++;
                   7122:                                 if (xch == '"' && xj) {
                   7123:                                     toggle (xi);
                   7124:                                     continue;
                   7125:                                 }
                   7126:                                 if (xi && (xch != EOL))
                   7127:                                     continue;
                   7128:                                 if (xch == '(') {
                   7129:                                     xj++;
                   7130:                                     continue;
                   7131:                                 }
                   7132:                                 if (xch == ')') {
                   7133:                                     if (xj-- > 0)
                   7134:                                         continue;
                   7135:                                     break;
                   7136:                                 }
                   7137:                                 if (xj && xch != EOL)
                   7138:                                     continue;
                   7139:                                 if (xch == ',' &&
                   7140:                                     (ch == 'g' || ch == 'q' || ch == 'o'))
                   7141:                                     break;
                   7142:                                 j = INVEXPR;
                   7143:                                 b = xb;
                   7144:                                 goto zserr;
                   7145:                             }
                   7146:                         }
                   7147:                     }           /* end data/order/query check */
                   7148:                     if (ch == 'e' ||    /* $EXTRACT */
                   7149:                         ch == 'p' ||    /* $PIECE */
                   7150:                         ch == 'a' ||    /* $ASCII */
                   7151:                         ch == 'g' ||    /* $GET */
                   7152:                         ch == 'j' ||    /* $JUSTIFY */
                   7153:                         ch == 'l' ||    /* $LENGTH */
                   7154:                         ch == 'r' ||    /* $RANDOM/REVERSE */
                   7155:                         ch == 't' ||    /* $TEXT/TRANSLATE */
                   7156:                         ch == 'f') {    /* $FIND/FNUMBER */
                   7157:                         int     xch,
                   7158:                             xi,
                   7159:                             xj,
                   7160:                             xa;
                   7161:                         char   *xb;
                   7162:                         
                   7163:                         xb = b;     /* do not change old 'b' pointer */
                   7164: /* skip name */
                   7165:                         while (((xch = (*xb)) >= 'A' && xch <= 'Z') ||
                   7166:                                (xch >= 'a' && xch <= 'z'))
                   7167:                             xb++;
                   7168:                         if (xch == '(') {
                   7169:                             xi = 0; /* quotes */
                   7170:                             xj = 0; /* brackets */
                   7171:                             xa = 1;
                   7172:                             for (;;)
                   7173:                             {
                   7174:                                 xch = (*++xb);
                   7175:                                 if (xch == EOL)
                   7176:                                     break;
                   7177:                                 if (xch == '"') {
                   7178:                                     toggle (xi);
                   7179:                                     continue;
                   7180:                                 }
                   7181:                                 if (xi)
                   7182:                                     continue;
                   7183:                                 if (xch == '(') {
                   7184:                                     xj++;
                   7185:                                     continue;
                   7186:                                 }
                   7187:                                 if (xch == ')') {
                   7188:                                     if (xj-- > 0)
                   7189:                                         continue;
                   7190:                                     break;
                   7191:                                 }
                   7192:                                 if (xj == 0 && xch == ',') {
                   7193:                                     xa++;
                   7194:                                     continue;
                   7195:                                 }
                   7196:                             }
                   7197:                             if ((ch == 'e' && (xa > 3)) ||  /* $EXTRACT */
                   7198:                                 (ch == 'p' && (xa < 2 || xa > 4)) ||    /* $PIECE */
                   7199:                                 (ch == 'a' && (xa > 2)) ||  /* $ASCII */
                   7200:                                 (ch == 'g' && (xa > 2)) ||  /* $GET */
                   7201:                                 (ch == 'j' && (xa < 2 || xa > 3)) ||    /* $JUSTIFY */
                   7202:                                 (ch == 'l' && (xa > 2)) ||  /* $LENGTH */
                   7203:                                 (ch == 'r' && (xa > 1)) ||  /* $RANDON/$REVERSE */
                   7204:                                 (ch == 't' && (xa > 3)) ||  /* $TEXT/TRANSLATE */
                   7205:                                 (ch == 'f' && (xa < 2 || xa > 3))) {    /* $FIND/FNUMBER */
                   7206:                                 j = FUNARG;
                   7207:                                 b = xb;
                   7208:                                 goto zserr;
                   7209:                             }
                   7210:                         }
                   7211:                     }           /* end number of args check */
                   7212:                     continue;
                   7213:                 }
                   7214:                 if (ch == '(') {
                   7215:                     j++;
                   7216:                     continue;
                   7217:                 }
                   7218:                 if (ch == ')') {
                   7219:                     if (j--)
                   7220:                         continue;
                   7221:                     break;
                   7222:                 }
                   7223:                 if (ch == ',') {
                   7224:                     if ((ch = *b) == SP || ch == EOL || ch == ',') {
                   7225:                         j = ARGLIST;
                   7226:                         goto zserr;
                   7227:                     }
                   7228:                 }
                   7229:             }
                   7230:             if (i)
                   7231:                 j = QUOTER;
                   7232:             else if (j)
                   7233:                 j = j < 0 ? INVEXPR : BRAER;
                   7234:             if (j == OK && ch != EOL && ch != SP)
                   7235:                 j = SPACER;
                   7236:             if (j)
                   7237:                 goto zserr;
                   7238:         }               /* end postcond */
                   7239:         if (ch == SP)
                   7240:             ch = *b;
                   7241:         else if (ch != EOL) {
                   7242:             j = SPACER;
                   7243:             goto zserr;
                   7244:         }
                   7245:         if ((ch == SP || ch == EOL) &&  /* never argumentless */
                   7246:             (f == 'j' || f == 'o' || f == 'r' ||
                   7247:              f == 's' || f == 'u' || f == 'x' ||
                   7248:              f == 'g')) {
                   7249:             j = ARGLIST;
                   7250:             goto zserr;
                   7251:         }
                   7252: /* or.. always argumentless */
                   7253:         if ((ch != SP && ch != EOL) && (f == 'e' || (f == 'q' && forline))) {
                   7254:             j = SPACER;
                   7255:             goto zserr;
                   7256:         }
                   7257:         if (f == 'f')
                   7258:             forline = TRUE;
                   7259:         if (ch == EOL)
                   7260:             break;
                   7261: /* scan argument */
                   7262:         i = 0;              /* quotes */
                   7263:         j = 0;              /* brackets */
                   7264:         ch = SP;            /* init: previous character */
                   7265:         for (;;)                /* scan argument */
                   7266:         {
                   7267:             f = ch;         /* f=previous character */
                   7268:             if ((ch = *b++) == EOL)
                   7269:                 break;
                   7270:             if (ch == '*' && *b == ch)
                   7271:                 b++;            /* exponentiation */
                   7272:             if (ch == '!' && *b == ch)
                   7273:                 b++;                /* XOR */
                   7274:             if (ch == ']') {
                   7275:                 if (*b == ch)
                   7276:                     b++;        /* SORTSAFTER */
                   7277:                 if (*b == '=')
                   7278:                     b++;        /* EQFOLLOWS or EQSORTS */
                   7279:             }
                   7280:             if (ch == '"') {
                   7281:                 toggle (i);
                   7282:                 continue;
                   7283:             }
                   7284:             if (i)
                   7285:                 continue;
                   7286:             if (ch == '$') {
                   7287:                 ch = *b++;
                   7288:                 if (ch >= 'A' && ch <= 'Z')
                   7289:                     ch += 32;
                   7290:                 if ((ch < 'a' || ch > 'z' || ch == 'b' ||
                   7291:                      ch == 'm' || ch == 'u' || ch == 'w') && ch != '$') {
                   7292:                     j = ILLFUN;
                   7293:                     goto zserr;
                   7294:                 }
                   7295:                 if (ch == 's') {    /* $SELECT */
                   7296:                     int     xch,
                   7297:                         xi,
                   7298:                         xj;
                   7299:                     char   *xb;
                   7300:                     int     sfl;
                   7301:                     
                   7302:                     xi = 0;     /* quotes */
                   7303:                     xj = 0;     /* brackets */
                   7304:                     xb = b;     /* do not change old 'b' pointer */
                   7305:                     sfl = TRUE;     /* first ':' expected */
                   7306:                     for (;;)
                   7307:                     {
                   7308:                         if ((xch = *xb++) == EOL ||
                   7309:                             ((xch == SP || xch == ',') && xj == 0)) {
                   7310:                             if (xj == 0)
                   7311:                                 break;  /* $STORAGE */
                   7312:                             j = SELER;
                   7313:                             b = xb;
                   7314:                             goto zserr;
                   7315:                         }
                   7316:                         if (xch == '"') {
                   7317:                             toggle (xi);
                   7318:                             continue;
                   7319:                         }
                   7320:                         if (xi)
                   7321:                             continue;
                   7322:                         if (xch == ':') {
                   7323:                             if (xj > 1)
                   7324:                                 continue;
                   7325:                             if (sfl) {
                   7326:                                 sfl = FALSE;
                   7327:                                 continue;
                   7328:                             }
                   7329:                             j = SELER;
                   7330:                             b = xb;
                   7331:                             goto zserr;
                   7332:                         }
                   7333:                         if (xch == ',') {
                   7334:                             if (xj > 1)
                   7335:                                 continue;
                   7336:                             if (!sfl) {
                   7337:                                 sfl = TRUE;
                   7338:                                 continue;
                   7339:                             }
                   7340:                             j = SELER;
                   7341:                             b = xb;
                   7342:                             goto zserr;
                   7343:                         }
                   7344:                         if (xch == '(') {
                   7345:                             xj++;
                   7346:                             continue;
                   7347:                         }
                   7348:                         if (xch == ')') {
                   7349:                             if ((xj--) > 1)
                   7350:                                 continue;
                   7351:                             if (sfl) {
                   7352:                                 j = SELER;
                   7353:                                 b = xb;
                   7354:                                 goto zserr;
                   7355:                             }
                   7356:                             break;
                   7357:                         }
                   7358:                     }
                   7359:                 }
                   7360: /* end select check */
                   7361:                 else if (ch == 'd' ||   /* $DATA */
                   7362:                          ch == 'g' ||    /* $GET */
                   7363:                          ch == 'o' ||    /* $ORDER */
                   7364:                          ch == 'n' ||    /* $NEXT */
                   7365:                          ch == 'q') {    /* $QUERY */
                   7366:                     int     xch,
                   7367:                         xi,
                   7368:                         xj;
                   7369:                     char   *xb;
                   7370:                     
                   7371:                     xb = b;     /* do not change old 'b' pointer */
                   7372: /* skip name */
                   7373:                     while (((xch = (*xb)) >= 'A' && xch <= 'Z') ||
                   7374:                            (xch >= 'a' && xch <= 'z'))
                   7375:                         xb++;
                   7376:                     if (xch == '(') {
                   7377:                         if ((xch = (*++xb)) == '^' || xch == '%' ||
                   7378:                             (xch >= 'A' && xch <= 'Z') ||
                   7379:                             (xch >= 'a' && xch <= 'z')) {
                   7380:                             xi = xch;
                   7381:                             if (xch == '^' && *(xb + 1) == '%')
                   7382:                                 xb++;
                   7383:                             while
                   7384:                                 (((xch = (*++xb)) >= 'A' && xch <= 'Z') ||
                   7385:                                  (xch >= 'a' && xch <= 'z') ||
                   7386:                                  (xch >= '0' && xch <= '9') ||
                   7387:                                  (xch == '.') ||
                   7388:                                  (xch == '/' && xi <= '^') ||
                   7389:                                  (xch == '%' && *(xb - 1) == '/')) ;
                   7390:                             
                   7391:                         } else {
                   7392:                             if (xch == '@')
                   7393:                                 continue;
                   7394:                             j = INVEXPR;
                   7395:                             b = xb;
                   7396:                             goto zserr;
                   7397:                         }
                   7398:                         xi = 0;     /* quotes */
                   7399:                         xj = 0;     /* brackets */
                   7400:                         for (;;)
                   7401:                         {
                   7402:                             xch = *xb++;
                   7403:                             if (xch == '"' && xj) {
                   7404:                                 toggle (xi);
                   7405:                                 continue;
                   7406:                             }
                   7407:                             if (xi && (xch != EOL))
                   7408:                                 continue;
                   7409:                             if (xch == '(') {
                   7410:                                 xj++;
                   7411:                                 continue;
                   7412:                             }
                   7413:                             if (xch == ')') {
                   7414:                                 if (xj-- > 0)
                   7415:                                     continue;
                   7416:                                 break;
                   7417:                             }
                   7418:                             if (xj && xch != EOL)
                   7419:                                 continue;
                   7420:                             if (xch == ',' &&
                   7421:                                 (ch == 'g' || ch == 'q' || ch == 'o'))
                   7422:                                 break;
                   7423:                             j = INVEXPR;
                   7424:                             b = xb;
                   7425:                             goto zserr;
                   7426:                         }
                   7427:                     }
                   7428:                 }           /* end data/order/query check */
                   7429:                 if (ch == 'e' ||    /* $EXTRACT */
                   7430:                     ch == 'p' ||    /* $PIECE */
                   7431:                     ch == 'a' ||    /* $ASCII */
                   7432:                     ch == 'g' ||    /* $GET */
                   7433:                     ch == 'j' ||    /* $JUSTIFY */
                   7434:                     ch == 'l' ||    /* $LENGTH */
                   7435:                     ch == 'r' ||    /* $RANDON/$REVERSE */
                   7436:                     ch == 't' ||    /* $TEXT/TRANSLATE */
                   7437:                     ch == 'f') {    /* $FIND/FNUMBER */
                   7438:                     int     xch,
                   7439:                         xi,
                   7440:                         xj,
                   7441:                         xa;
                   7442:                     char   *xb;
                   7443:                     
                   7444:                     xb = b;     /* do not change old 'b' pointer */
                   7445: /* skip name */
                   7446:                     while (((xch = (*xb)) >= 'A' && xch <= 'Z') ||
                   7447:                            (xch >= 'a' && xch <= 'z'))
                   7448:                         xb++;
                   7449:                     if (xch == '(') {
                   7450:                         xi = 0;     /* quotes */
                   7451:                         xj = 0;     /* brackets */
                   7452:                         xa = 1;
                   7453:                         for (;;)
                   7454:                         {
                   7455:                             xch = (*++xb);
                   7456:                             if (xch == EOL)
                   7457:                                 break;
                   7458:                             if (xch == '"') {
                   7459:                                 toggle (xi);
                   7460:                                 continue;
                   7461:                             }
                   7462:                             if (xi)
                   7463:                                 continue;
                   7464:                             if (xch == '(') {
                   7465:                                 xj++;
                   7466:                                 continue;
                   7467:                             }
                   7468:                             if (xch == ')') {
                   7469:                                 if (xj-- > 0)
                   7470:                                     continue;
                   7471:                                 break;
                   7472:                             }
                   7473:                             if (xj == 0 && xch == ',') {
                   7474:                                 xa++;
                   7475:                                 continue;
                   7476:                             }
                   7477:                         }
                   7478:                         if ((ch == 'e' && (xa > 3)) ||  /* $EXTRACT */
                   7479:                             (ch == 'p' && (xa < 2 || xa > 4)) ||    /* $PIECE */
                   7480:                             (ch == 'a' && (xa > 2)) ||  /* $ASCII */
                   7481:                             (ch == 'o' && (xa > 2)) ||  /* $ORDER */
                   7482:                             (ch == 'q' && (xa > 2)) ||  /* $QUERY */
                   7483:                             (ch == 'g' && (xa > 2)) ||  /* $GET */
                   7484:                             (ch == 'j' && (xa < 2 || xa > 3)) ||    /* $JUSTIFY */
                   7485:                             (ch == 'l' && (xa > 2)) ||  /* $LENGTH */
                   7486:                             (ch == 't' && (xa > 3)) ||  /* $TEXT/TRANSLATE */
                   7487:                             (ch == 'f' && (xa < 2 || xa > 3))) {    /* $FIND/FNUMBER */
                   7488:                             j = FUNARG;
                   7489:                             b = xb;
                   7490:                             goto zserr;
                   7491:                         }
                   7492:                     }
                   7493:                 }           /* end number of args check */
                   7494:                 continue;
                   7495:             }
                   7496:             if (ch == '(') {
                   7497:                 if (f == ')' || f == '"') {
                   7498:                     j = ARGLIST;
                   7499:                     goto zserr;
                   7500:                 }
                   7501:                 j++;
                   7502:                 continue;
                   7503:             }
                   7504:             if (ch == ')') {
                   7505:                 tmp[0] = f;
                   7506:                 tmp[1] = EOL;
                   7507:                 if (find (" !#&'(*+,-/:<=>?@[\\]_\201", tmp)) {
                   7508:                     j = MISSOPD;
                   7509:                     goto zserr;
                   7510:                 }
                   7511:                 if (j--)
                   7512:                     continue;
                   7513:                 break;
                   7514:             }
                   7515:             if (ch == SP)
                   7516:                 break;
                   7517:             tmp[0] = ch;
                   7518:             tmp[1] = EOL;
                   7519:             if (ch == '/' && (cmnd == 'r' || cmnd == 'w') && (f == SP || f == ',')) {
                   7520:                 int     xch,
                   7521:                     xi,
                   7522:                     xj;
                   7523:                 char   *xb;
                   7524:                 
                   7525:                 xi = 0;         /* quotes */
                   7526:                 xj = 0;         /* brackets */
                   7527:                 xb = b;         /* do not change old 'b' pointer */
                   7528:                 while ((xch = *xb++) != EOL) {
                   7529:                     if (xch == '"') {
                   7530:                         toggle (xi);
                   7531:                         continue;
                   7532:                     }
                   7533:                     if (xi)
                   7534:                         continue;
                   7535:                     if (xch == '(') {
                   7536:                         xj++;
                   7537:                         continue;
                   7538:                     }
                   7539:                     if (xch == ')') {
                   7540:                         if ((xj--) > 1)
                   7541:                             continue;
                   7542:                         xch = *xb++;
                   7543:                         break;
                   7544:                     }
                   7545:                     if (xj)
                   7546:                         continue;
                   7547:                     if ((xch < 'A' || xch > 'Z') &&
                   7548:                         (xch < '1' || xch > '3'))
                   7549:                         break;
                   7550:                 }
                   7551:                 if (xch != ',' && xch != SP && xch != EOL) {
                   7552:                     b = xb;
                   7553:                     j = SPACER;
                   7554:                     goto zserr;
                   7555:                 }
                   7556:                 if (--xb == b) {
                   7557:                     j = ARGLIST;
                   7558:                     goto zserr;
                   7559:                 }
                   7560:             }
                   7561:             if (f == '?' && cmnd != 'r' && cmnd != 'w' &&
                   7562:                 find ("@1234567890.\201", tmp) == 0) {  /* pattern match */
                   7563:                 j = MISSOPD;
                   7564:                 goto zserr;
                   7565:             }
                   7566: /* note: write/read may have !?*#/ not as binary op */
                   7567:             if (find ("&<=>[\\]_\201", tmp) ||  /* binary operator */
                   7568:                 (find ("!?*#/\201", tmp) && cmnd != 'r' && cmnd != 'w'))
                   7569: /* some may be negated */
                   7570:             {
                   7571:                 if (find ("#*/\\_\201", tmp) || f != NOT) {
                   7572:                     tmp[0] = f;
                   7573:                     if (find (" &'(+-<=>[\\]_\201", tmp) ||
                   7574:                         (find ("!?*#/\201", tmp) && cmnd != 'r' && cmnd != 'w')) {
                   7575:                         j = MISSOPD;
                   7576:                         goto zserr;
                   7577:                     }
                   7578:                 }
                   7579:                 continue;
                   7580:             }
                   7581:             if (ch == '+' || ch == '-') {
                   7582:                 if (f == NOT) {
                   7583:                     j = MISSOPD;
                   7584:                     goto zserr;
                   7585:                 }
                   7586:                 continue;
                   7587:             }
                   7588:             if (ch == ':') {
                   7589:                 if (f == ',') {
                   7590:                     j = MISSOPD;
                   7591:                     goto zserr;
                   7592:                 }
                   7593:                 continue;
                   7594:             }
                   7595:             if (ch == '`' || ch == ';' || ch == '{' || ch == '|' ||
                   7596:                 ch == '}' || ch == '~') {   /* illegal characters */
                   7597:                 j = ILLOP;
                   7598:                 goto zserr;
                   7599:             }
                   7600:             if (ch == '$') {        /* check function */
                   7601:                 if (((f = *b | 0140) < 'a' || f > 'z') && f != '$') {
                   7602:                     j = ILLFUN;
                   7603:                     goto zserr;
                   7604:                 }
                   7605:                 continue;
                   7606:             }
                   7607:             if (ch == ',') {        /* comma is a delimiter! */
                   7608:                 if (*(b - 2) == SP || (f = *b) == SP || f == EOL || f == ',') {
                   7609:                     j = ARGLIST;
                   7610:                     goto zserr;
                   7611:                 }
                   7612:             }
                   7613:         }
                   7614:         if (i)
                   7615:             j = QUOTER;
                   7616:         else if (j)
                   7617:             j = j > 0 ? INVEXPR : BRAER;
                   7618:         if (j)
                   7619:             goto zserr;
                   7620:         if (ch == EOL)
                   7621:             break;
                   7622: /* skip spaces before next command */
                   7623:         while (ch == SP || ch == TAB)
                   7624:             ch = *b++;
                   7625:         b--;
                   7626:     }
                   7627:     *a = EOL;               /* no error found */
                   7628:     return;
                   7629: }                   /* end zsyntax() */
                   7630: 
                   7631: time_t horolog_to_unix (char *horo)
                   7632: {
                   7633:     
                   7634:     char *ptr = horo;
                   7635:     register char ch;
                   7636:     register short i;
                   7637:     
                   7638:     char horo_days[10];
                   7639:     char horo_seconds[10];
                   7640: 
                   7641:     time_t seconds;
                   7642: 
                   7643:     i = 0;
                   7644:     
                   7645:     while ((ch = *(ptr++)) != ',') {
                   7646:         horo_days[i++] = ch;
                   7647:     }
                   7648:     horo_days[i] = '\0';
                   7649: 
                   7650:     i = 0;
                   7651:     while ((ch = *(ptr++)) != EOL) {
                   7652:         horo_seconds[i++] = ch;
                   7653:     }
                   7654:     horo_seconds[i] = '\0';
                   7655: 
                   7656:     seconds = (((atol (horo_days) - 47117L) * 86400L) + 43200 + atol (horo_seconds) + tzoffset);
                   7657: 
                   7658:     return (time_t) seconds;
                   7659:     
                   7660: }
                   7661: 
                   7662: 
                   7663: /* a    = result string
                   7664:  * type = type of transform
                   7665:  */
                   7666: void zkey (char *a, long type)
                   7667: {
                   7668: 
                   7669:     char del0;
                   7670:     char del1;
                   7671:     char del2;
                   7672:     char del3;
                   7673:     char del4;
                   7674: 
                   7675:     int f;
                   7676:     char prod_rule[256];
                   7677:     int i;
                   7678:     int ncs;            /* flag: non_collating_substring */
                   7679: 
                   7680:     if (type == 0) type = (-v93);          /* zero is reverse of default type */
                   7681:     if ((f = (type < 0))) type = (-type);
                   7682:     
                   7683:     if (type-- > NO_V93) {
                   7684:         merr_raise (ARGER);
                   7685:         return;
                   7686:     }
                   7687:     
                   7688:     del2 = v93a[type][0];       /* delimiter between primary/seconary key */
                   7689:     del0 = v93a[type][1];       /* delimiter between 'from' and 'to' substring */
                   7690:     del3 = '(';             /* introducer for 'non-collating' substrings */
                   7691:     del4 = ')';             /* terminator for 'non-collating' substring */
                   7692:     ncs = FALSE;            /* non_collating_substring flag */
                   7693: 
                   7694:     if (del0 == EOL) return;             /* no rule under of this type */
                   7695: 
                   7696:     del1 = v93a[type][2];       /* delimiter between different from/to pairs */
                   7697: /* production rule, stripped from delimiter declaration */
                   7698: /* with an added separator character at both ends */
                   7699: 
                   7700:     i = stcpy (prod_rule, &v93a[type][2]);
                   7701:     prod_rule[i] = del1;
                   7702:     prod_rule[++i] = EOL;
                   7703: 
                   7704:     if (f) goto backw;         /* negative is backward transform */
                   7705:     
                   7706: /* forward transform */
                   7707:     i = stlen (a);
                   7708: 
                   7709:     if (i == 0) return;             /* string empty - nothing to do */
                   7710:     
                   7711:     {
                   7712:         char ct0[256];
                   7713:         char ct1[256];
                   7714:         int ch = 0;
                   7715:         int d = 0;
                   7716:         int i1 = 0;
                   7717:         int j = 0;
                   7718:         int n0 = 0;
                   7719:         int n1 = 0;
                   7720:         int pos = 0;
                   7721:         char c;
                   7722:         
                   7723:         i = 0;
                   7724:         n0 = 0;
                   7725:         n1 = 0;
                   7726:         
                   7727:         while ((c = a[i]) != EOL) { /* non-collating substring? */
                   7728: 
                   7729:             if (c == del3) {        /* introducer valid only with matching terminator! */
                   7730: 
                   7731:                 j = i;
                   7732: 
                   7733:                 while ((ch = a[++j]) != EOL) {
                   7734:                     if (ch == del4) break;
                   7735:                 }
                   7736:                 
                   7737:                 if (ch == del4) {
                   7738: 
                   7739:                     while (i <= j) ct1[n1++] = a[i++];
                   7740:                     continue;
                   7741:                     
                   7742:                 }
                   7743:                 
                   7744:             }
                   7745:             
                   7746:             j = 0;
                   7747:             d = 0;
                   7748:             
                   7749: /* search for longest matching string */
                   7750:             while ((ch = prod_rule[j++]) != EOL) {
                   7751: 
                   7752:                 if (ch == del1) {
                   7753:                     
                   7754:                     if (prod_rule[j] != c) continue;
                   7755:                     
                   7756:                     i1 = i;
                   7757: 
                   7758:                     while ((ch = prod_rule[j++]) != del0 && ch == a[i1++]) ;
                   7759: 
                   7760:                     if (ch != del0) continue;
                   7761:                     
                   7762:                     if ((ch = i1 - i) > d) {
                   7763:                         d = ch;
                   7764:                         pos = j;
                   7765:                     }
                   7766:                     
                   7767:                 }
                   7768:                 
                   7769:             }
                   7770:             
                   7771:             if (n0 > STRLEN) {
                   7772:                 merr_raise (M75);
                   7773:                 return;
                   7774:             }               /* string too long */
                   7775:             
                   7776:             if (d == 0) {
                   7777: 
                   7778:                 ct0[n0++] = c;
                   7779:                 ct1[n1++] = '0';
                   7780:                 i++;
                   7781: 
                   7782:                 continue;
                   7783:                 
                   7784:             }
                   7785:             
                   7786:             j = 0;
                   7787:             c = prod_rule[pos];
                   7788:             ch = '0';
                   7789: 
                   7790:             if (c == del1) {
                   7791:                 
                   7792:                 ct1[n1++] = ' ';
                   7793:                 
                   7794:                 while (j <= pos) {
                   7795: 
                   7796:                     if (prod_rule[j] == del0) ch++;
                   7797: 
                   7798:                     j++;
                   7799:                     
                   7800:                 }
                   7801:                 
                   7802:             }
                   7803:             else {
                   7804: 
                   7805:                 while (j <= pos) {
                   7806: 
                   7807:                     if (prod_rule[j] == del0 && prod_rule[j + 1] == c) ch++;
                   7808:                     
                   7809:                     j++;
                   7810:                     
                   7811:                 }
                   7812:                 
                   7813:             }
                   7814:             
                   7815:             j = 0;
                   7816:             i += d;
                   7817:             ct1[n1++] = ch;
                   7818: 
                   7819:             while ((ct0[n0++] = prod_rule[pos++]) != del1) {
                   7820: 
                   7821:                 if (n1 > STRLEN) {
                   7822:                     merr_raise (M75);
                   7823:                     return;
                   7824:                 }           /* string too long */
                   7825:                 
                   7826:             }
                   7827:             
                   7828:             n0--;
                   7829:             
                   7830:         }
                   7831:         
                   7832:         ct0[n0++] = del2;
                   7833:         ct0[n0] = EOL;
                   7834:         ct1[n1] = EOL;
                   7835: 
                   7836: /* purge trailing zeroes */
                   7837:         while (ct1[--n1] == '0') {
                   7838: 
                   7839:             ct1[n1] = EOL;
                   7840: 
                   7841:             if (n1 == 0) {
                   7842:                 n0--;
                   7843:                 break;
                   7844:             }
                   7845:             
                   7846:         }
                   7847:         
                   7848:         if (n0 + n1 > STRLEN) {
                   7849:             merr_raise (M75);
                   7850:             return;
                   7851:         }               /* string too long */
                   7852:         
                   7853:         stcpy (a, ct0);
                   7854:         stcpy (&a[n0], ct1);
                   7855:         
                   7856:     }
                   7857:     
                   7858:     return;
                   7859: 
                   7860:     
                   7861: /* backward transform */
                   7862: backw:
                   7863: 
                   7864:     i = stlen (a);
                   7865: 
                   7866:     if (i == 0) return;             /* string empty */
                   7867:     
                   7868:     {
                   7869:         int c;
                   7870:         int ch;
                   7871:         int d;
                   7872:         int n0;
                   7873:         int n1;
                   7874:         int n2;
                   7875:         int j;
                   7876:         char z[256];
                   7877:         
                   7878:         stcpy (z, a);
                   7879:         n0 = 0;
                   7880:         n1 = 0;
                   7881:         n2 = 0;
                   7882:         
                   7883:         while ((d = z[n1++]) != EOL && (d != del2)) ;
                   7884: 
                   7885:         if (d == EOL) return;         /* nothing to change */
                   7886: 
                   7887:         for (;;) {
                   7888:             
                   7889:             c = z[n0];
                   7890:             d = z[n1];
                   7891: 
                   7892:             if (c == del2 && d == EOL) break;
                   7893: 
                   7894:             if (d == EOL) {
                   7895:                 d = '0';
                   7896:             }
                   7897:             else {
                   7898:                 n1++;
                   7899:             }
                   7900: 
                   7901:             
                   7902:             if (d == del3) {
                   7903: 
                   7904:                 a[n2++] = d;
                   7905:                 ncs = TRUE;
                   7906:                 
                   7907:                 continue;
                   7908:                 
                   7909:             }
                   7910: 
                   7911:             if (ncs) {
                   7912: 
                   7913:                 a[n2++] = d;
                   7914:                 
                   7915:                 if (d == del4) ncs = FALSE;
                   7916:                 
                   7917:                 continue;
                   7918:                 
                   7919:             }
                   7920:             
                   7921:             if (d == ' ') {     /* replacement with no chars */
                   7922: 
                   7923:                 d = z[n1++] - '0';
                   7924:                 j = 1;
                   7925: 
                   7926:                 while ((ch = prod_rule[j++]) != EOL) {
                   7927:                     if (ch == del0 && (--d) == 0) break;
                   7928:                 }
                   7929:                 
                   7930:             }
                   7931:             else {
                   7932: 
                   7933:                 if ((d -= '0') == 0) {
                   7934: 
                   7935:                     a[n2++] = c;
                   7936:                     n0++;
                   7937: 
                   7938:                     continue;
                   7939:                     
                   7940:                 }
                   7941:                 
                   7942:                 j = 1;
                   7943: 
                   7944:                 while ((ch = prod_rule[j++]) != EOL) {
                   7945:                     if (ch == del0 && prod_rule[j] == c && (--d) == 0) break;
                   7946:                 }
                   7947:                 
                   7948:             }
                   7949:             
                   7950:             d = j;
                   7951: 
                   7952:             while ((ch = prod_rule[j++]) != EOL) {
                   7953: 
                   7954:                 if (ch == del1) break;
                   7955:                 
                   7956:                 n0++;
                   7957:                 
                   7958:             }
                   7959:             
                   7960:             d--;
                   7961: 
                   7962:             while (prod_rule[d--] != del1) ;
                   7963: 
                   7964:             if (prod_rule[d + 2] == EOL) {
                   7965:                 merr_raise (ARGER);
                   7966:                 return;
                   7967:             }               /* string is not of proper format */
                   7968: 
                   7969:             d++;
                   7970: 
                   7971:             while ((ch = prod_rule[++d]) != del0) a[n2++] = ch;
                   7972:             
                   7973:         }
                   7974:         
                   7975:         a[n2] = EOL;
                   7976:         
                   7977:     }
                   7978:     
                   7979:     return;
                   7980: }                   /* end zkey() */
                   7981: 
                   7982: int levenshtein (char *word1, char *word2)
                   7983: {
                   7984:     int l1 = 0;
                   7985:     int l2 = 0;
                   7986:     int i = 0;
                   7987:     int j = 0;
                   7988:     int m = 0;
                   7989:     int t = 0;
                   7990:     int x = 0;
                   7991:     char    d[2][256];
                   7992: 
                   7993:     l1 = stlen (word1);
                   7994:     word1--;
                   7995:     
                   7996:     l2 = stlen (word2);
                   7997:     word2--;
                   7998:     
                   7999:     if (l1 == 0) return (l2);
                   8000:     if (l2 == 0) return (l1);
                   8001:     
                   8002:     t = 0;
                   8003: 
                   8004:     for (i = 0; i <= l1; i++) d[0][i] = i;
                   8005:     
                   8006:     for (j = 1; j <= l2; j++) {
                   8007: 
                   8008:         t ^= 1;
                   8009:         d[t][0] = j;
                   8010: 
                   8011:         for (i = 1; i <= l1; i++) {
                   8012: 
                   8013:             m = d[t ^ 1][i - 1];
                   8014:             if (word1[i] != word2[j]) m++;
                   8015: 
                   8016:             x = d[t ^ 1][i];
                   8017:             if (++x < m) m = x;
                   8018: 
                   8019:             x = d[t][i - 1];
                   8020:             if (++x < m) m = x;
                   8021: 
                   8022:             d[t][i] = m;
                   8023:             
                   8024:         }
                   8025:         
                   8026:     }
                   8027:     
                   8028:     return (m);
                   8029: }
                   8030: 
                   8031: /* conditional rounding */
                   8032: /* 'a' is assumed to be a 'canonic' numeric string           */
                   8033: /* it is rounded to 'digits' fractional digits provided that */
                   8034: /* the canonic result has at most (digits-2) frac.digits     */
                   8035: void cond_round (char *a, int digits)
                   8036: {
                   8037:     int ch;
                   8038:     int i;
                   8039:     int point;
                   8040:     int lena;
                   8041: 
                   8042:     point = -1;
                   8043: 
                   8044:     i = 0;
                   8045:     i = 0;
                   8046: 
                   8047:     while (a[i] != EOL) {
                   8048: 
                   8049:         if (a[i] == '.') point = i;
                   8050:         i++;
                   8051:         
                   8052:     }
                   8053:     
                   8054:     lena = i;
                   8055: 
                   8056:     if (point < 0) point = i;
                   8057:     if ((point + digits + 1) >= i) return;             /* nothing to round */
                   8058:     
                   8059:     i = point + digits + 1;
                   8060: 
                   8061:     if (a[i] < '5') {
                   8062: 
                   8063:         if ((a[i - 1] != '0') || (a[i - 2] != '0')) return;         /* condition! */
                   8064:         
                   8065:         a[i] = EOL;
                   8066: 
                   8067:         while (a[--i] == '0') a[i] = EOL;
                   8068:         
                   8069:         if (a[i] == '.') {
                   8070: 
                   8071:             a[i] = EOL;
                   8072: 
                   8073:             if (i == 0 || (i == 1 && a[0] == '-')) a[0] = '0';
                   8074:             
                   8075:         }
                   8076:         
                   8077:         return;
                   8078:         
                   8079:     }
                   8080:     
                   8081:     if (a[i - 1] != '9' || a[i - 2] != '9') return;             /* condition */
                   8082:     
                   8083:     for (;;) {
                   8084:         
                   8085:         if (i >= point) {
                   8086:             a[i] = EOL;
                   8087:         }
                   8088:         else {
                   8089:             a[i] = '0';
                   8090:         }
                   8091:         
                   8092:         if (--i < (a[0] == '-')) {
                   8093: 
                   8094:             for (i = lena; i >= 0; i--) a[i + 1] = a[i];
                   8095: 
                   8096:             a[a[0] == '-'] = '1';
                   8097: 
                   8098:             break;
                   8099:             
                   8100:         }
                   8101:         
                   8102:         if ((ch = a[i]) == '.') continue;
                   8103:         
                   8104:         if (a[i] < '9' && ch >= '0') {
                   8105:             a[i] = ++ch;
                   8106:             break;
                   8107:         }
                   8108:         
                   8109:     }
                   8110: 
                   8111:     return;
                   8112:     
                   8113: }                   /* end cond_round */
                   8114: 
                   8115: short is_horolog(char *s)
                   8116: {
                   8117:     
                   8118:     register int i;
                   8119:     char ch;
                   8120:     int commata = 0;
                   8121:     int digits = 0;   
                   8122: 
                   8123:     if (!isdigit (s[0])) return FALSE;
                   8124: 
                   8125:     for (i = 0; i < stlen (s); i++) {
                   8126: 
                   8127:         ch = s[i];
                   8128: 
                   8129:         if (isdigit (ch)) {
                   8130:             digits++;
                   8131:         }
                   8132:         else if (ch == ',' && commata == 0) {
                   8133:             commata++;
                   8134:         }
                   8135:         else if (ch == ',' && commata > 0) {
                   8136:             return FALSE;         
                   8137:         }
                   8138:         else {
                   8139:             return FALSE;
                   8140:         }
                   8141: 
                   8142:     }
                   8143: 
                   8144:     if (commata != 1) {
                   8145:         return FALSE;
                   8146:     }
                   8147:     else {
                   8148:         return TRUE;
                   8149:     }
                   8150:     
                   8151: }

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>