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

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

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