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

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

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