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

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

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