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

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

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