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

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

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