home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-dist / emacs-19.28-src.tgz / tar.out / fsf / emacs / src / termcap.c < prev    next >
C/C++ Source or Header  |  1996-09-28  |  16KB  |  777 lines

  1. /* Work-alike for termcap, plus extra features.
  2.    Copyright (C) 1985, 1986, 1993, 1994 Free Software Foundation, Inc.
  3.  
  4. This program is free software; you can redistribute it and/or modify
  5. it under the terms of the GNU General Public License as published by
  6. the Free Software Foundation; either version 2, or (at your option)
  7. any later version.
  8.  
  9. This program is distributed in the hope that it will be useful,
  10. but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  12. GNU General Public License for more details.
  13.  
  14. You should have received a copy of the GNU General Public License
  15. along with this program; see the file COPYING.  If not, write to
  16. the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.  */
  17.  
  18. /* Emacs config.h may rename various library functions such as malloc.  */
  19. #ifdef HAVE_CONFIG_H
  20.  
  21. #include <config.h>
  22. #include <paths.h>
  23.  
  24. /* Get the O_* definitions for open et al.  */
  25. #include <sys/file.h>
  26. #ifdef USG5
  27. #include <fcntl.h>
  28. #endif
  29.  
  30. #else /* not HAVE_CONFIG_H */
  31.  
  32. #if defined(HAVE_STRING_H) || defined(STDC_HEADERS)
  33. #define bcopy(s, d, n) memcpy ((d), (s), (n))
  34. #endif
  35.  
  36. #ifdef STDC_HEADERS
  37. #include <stdlib.h>
  38. #include <string.h>
  39. #else
  40. char *getenv ();
  41. char *malloc ();
  42. char *realloc ();
  43. #endif
  44.  
  45. #ifdef HAVE_UNISTD_H
  46. #include <unistd.h>
  47. #endif
  48. #ifdef _POSIX_VERSION
  49. #include <fcntl.h>
  50. #endif
  51.  
  52. #endif /* not HAVE_CONFIG_H */
  53.  
  54. #ifndef NULL
  55. #define NULL (char *) 0
  56. #endif
  57.  
  58. #ifndef O_RDONLY
  59. #define O_RDONLY 0
  60. #endif
  61.  
  62. /* BUFSIZE is the initial size allocated for the buffer
  63.    for reading the termcap file.
  64.    It is not a limit.
  65.    Make it large normally for speed.
  66.    Make it variable when debugging, so can exercise
  67.    increasing the space dynamically.  */
  68.  
  69. #ifndef BUFSIZE
  70. #ifdef DEBUG
  71. #define BUFSIZE bufsize
  72.  
  73. int bufsize = 128;
  74. #else
  75. #define BUFSIZE 2048
  76. #endif
  77. #endif
  78.  
  79. #ifndef TERMCAP_NAME
  80. #define TERMCAP_NAME "/etc/termcap"
  81. #endif
  82.  
  83. #ifndef emacs
  84. static void
  85. memory_out ()
  86. {
  87.   write (2, "virtual memory exhausted\n", 25);
  88.   exit (1);
  89. }
  90.  
  91. static char *
  92. xmalloc (size)
  93.      unsigned size;
  94. {
  95.   register char *tem = malloc (size);
  96.  
  97.   if (!tem)
  98.     memory_out ();
  99.   return tem;
  100. }
  101.  
  102. static char *
  103. xrealloc (ptr, size)
  104.      char *ptr;
  105.      unsigned size;
  106. {
  107.   register char *tem = realloc (ptr, size);
  108.  
  109.   if (!tem)
  110.     memory_out ();
  111.   return tem;
  112. }
  113. #endif /* not emacs */
  114.  
  115. /* Looking up capabilities in the entry already found.  */
  116.  
  117. /* The pointer to the data made by tgetent is left here
  118.    for tgetnum, tgetflag and tgetstr to find.  */
  119. static char *term_entry;
  120.  
  121. static char *tgetst1 ();
  122.  
  123. /* Search entry BP for capability CAP.
  124.    Return a pointer to the capability (in BP) if found,
  125.    0 if not found.  */
  126.  
  127. static char *
  128. find_capability (bp, cap)
  129.      register char *bp, *cap;
  130. {
  131.   for (; *bp; bp++)
  132.     if (bp[0] == ':'
  133.     && bp[1] == cap[0]
  134.     && bp[2] == cap[1])
  135.       return &bp[4];
  136.   return NULL;
  137. }
  138.  
  139. int
  140. tgetnum (cap)
  141.      char *cap;
  142. {
  143.   register char *ptr = find_capability (term_entry, cap);
  144.   if (!ptr || ptr[-1] != '#')
  145.     return -1;
  146.   return atoi (ptr);
  147. }
  148.  
  149. int
  150. tgetflag (cap)
  151.      char *cap;
  152. {
  153.   register char *ptr = find_capability (term_entry, cap);
  154.   return ptr && ptr[-1] == ':';
  155. }
  156.  
  157. /* Look up a string-valued capability CAP.
  158.    If AREA is non-null, it points to a pointer to a block in which
  159.    to store the string.  That pointer is advanced over the space used.
  160.    If AREA is null, space is allocated with `malloc'.  */
  161.  
  162. char *
  163. tgetstr (cap, area)
  164.      char *cap;
  165.      char **area;
  166. {
  167.   register char *ptr = find_capability (term_entry, cap);
  168.   if (!ptr || (ptr[-1] != '=' && ptr[-1] != '~'))
  169.     return NULL;
  170.   return tgetst1 (ptr, area);
  171. }
  172.  
  173. /* Table, indexed by a character in range 0100 to 0140 with 0100 subtracted,
  174.    gives meaning of character following \, or a space if no special meaning.
  175.    Eight characters per line within the string.  */
  176.  
  177. static char esctab[]
  178.   = " \007\010  \033\014 \
  179.       \012 \
  180.   \015 \011 \013 \
  181.         ";
  182.  
  183. /* PTR points to a string value inside a termcap entry.
  184.    Copy that value, processing \ and ^ abbreviations,
  185.    into the block that *AREA points to,
  186.    or to newly allocated storage if AREA is NULL.
  187.    Return the address to which we copied the value,
  188.    or NULL if PTR is NULL.  */
  189.  
  190. static char *
  191. tgetst1 (ptr, area)
  192.      char *ptr;
  193.      char **area;
  194. {
  195.   register char *p, *r;
  196.   register int c;
  197.   register int size;
  198.   char *ret;
  199.   register int c1;
  200.  
  201.   if (!ptr)
  202.     return NULL;
  203.  
  204.   /* `ret' gets address of where to store the string.  */
  205.   if (!area)
  206.     {
  207.       /* Compute size of block needed (may overestimate).  */
  208.       p = ptr;
  209.       while ((c = *p++) && c != ':' && c != '\n')
  210.     ;
  211.       ret = (char *) xmalloc (p - ptr + 1);
  212.     }
  213.   else
  214.     ret = *area;
  215.  
  216.   /* Copy the string value, stopping at null or colon.
  217.      Also process ^ and \ abbreviations.  */
  218.   p = ptr;
  219.   r = ret;
  220.   while ((c = *p++) && c != ':' && c != '\n')
  221.     {
  222.       if (c == '^')
  223.     c = *p++ & 037;
  224.       else if (c == '\\')
  225.     {
  226.       c = *p++;
  227.       if (c >= '0' && c <= '7')
  228.         {
  229.           c -= '0';
  230.           size = 0;
  231.  
  232.           while (++size < 3 && (c1 = *p) >= '0' && c1 <= '7')
  233.         {
  234.           c *= 8;
  235.           c += c1 - '0';
  236.           p++;
  237.         }
  238.         }
  239.       else if (c >= 0100 && c < 0200)
  240.         {
  241.           c1 = esctab[(c & ~040) - 0100];
  242.           if (c1 != ' ')
  243.         c = c1;
  244.         }
  245.     }
  246.       *r++ = c;
  247.     }
  248.   *r = '\0';
  249.   /* Update *AREA.  */
  250.   if (area)
  251.     *area = r + 1;
  252.   return ret;
  253. }
  254.  
  255. /* Outputting a string with padding.  */
  256.  
  257. short ospeed;
  258. /* If OSPEED is 0, we use this as the actual baud rate.  */
  259. int tputs_baud_rate;
  260. char PC;
  261.  
  262. /* Actual baud rate if positive;
  263.    - baud rate / 100 if negative.  */
  264.  
  265. static short speeds[] =
  266.   {
  267. #ifdef VMS
  268.     0, 50, 75, 110, 134, 150, -3, -6, -12, -18,
  269.     -20, -24, -36, -48, -72, -96, -192
  270. #else /* not VMS */
  271.     0, 50, 75, 110, 135, 150, -2, -3, -6, -12,
  272.     -18, -24, -48, -96, -192, -384
  273. #endif /* not VMS */
  274.   };
  275.  
  276. void
  277. tputs (str, nlines, outfun)
  278.      register char *str;
  279.      int nlines;
  280.      register int (*outfun) ();
  281. {
  282.   register int padcount = 0;
  283.   register int speed;
  284.  
  285. #ifdef emacs
  286.   extern baud_rate;
  287.   speed = baud_rate;
  288. #else
  289.   if (ospeed == 0)
  290.     speed = tputs_baud_rate;
  291.   else
  292.     speed = speeds[ospeed];
  293. #endif
  294.  
  295.   if (!str)
  296.     return;
  297.  
  298.   while (*str >= '0' && *str <= '9')
  299.     {
  300.       padcount += *str++ - '0';
  301.       padcount *= 10;
  302.     }
  303.   if (*str == '.')
  304.     {
  305.       str++;
  306.       padcount += *str++ - '0';
  307.     }
  308.   if (*str == '*')
  309.     {
  310.       str++;
  311.       padcount *= nlines;
  312.     }
  313.   while (*str)
  314.     (*outfun) (*str++);
  315.  
  316.   /* padcount is now in units of tenths of msec.  */
  317.   padcount *= speeds[ospeed];
  318.   padcount += 500;
  319.   padcount /= 1000;
  320.   if (speeds[ospeed] < 0)
  321.     padcount = -padcount;
  322.   else
  323.     {
  324.       padcount += 50;
  325.       padcount /= 100;
  326.     }
  327.  
  328.   while (padcount-- > 0)
  329.     (*outfun) (PC);
  330. }
  331.  
  332. /* Finding the termcap entry in the termcap data base.  */
  333.  
  334. struct buffer
  335.   {
  336.     char *beg;
  337.     int size;
  338.     char *ptr;
  339.     int ateof;
  340.     int full;
  341.   };
  342.  
  343. /* Forward declarations of static functions.  */
  344.  
  345. static int scan_file ();
  346. static char *gobble_line ();
  347. static int compare_contin ();
  348. static int name_match ();
  349.  
  350. #ifdef VMS
  351.  
  352. #include <rmsdef.h>
  353. #include <fab.h>
  354. #include <nam.h>
  355.  
  356. static int
  357. valid_filename_p (fn)
  358.      char *fn;
  359. {
  360.   struct FAB fab = cc$rms_fab;
  361.   struct NAM nam = cc$rms_nam;
  362.   char esa[NAM$C_MAXRSS];
  363.  
  364.   fab.fab$l_fna = fn;
  365.   fab.fab$b_fns = strlen(fn);
  366.   fab.fab$l_nam = &nam;
  367.   fab.fab$l_fop = FAB$M_NAM;
  368.  
  369.   nam.nam$l_esa = esa;
  370.   nam.nam$b_ess = sizeof esa;
  371.  
  372.   return SYS$PARSE(&fab, 0, 0) == RMS$_NORMAL;
  373. }
  374.  
  375. #else /* !VMS */
  376.  
  377. #ifdef MSDOS /* MW, May 1993 */
  378. static int
  379. valid_filename_p (fn)
  380.      char *fn;
  381. {
  382.   return *fn == '/' || fn[1] == ':';
  383. }
  384. #else
  385. #ifdef AMIGA
  386. static int
  387. valid_filename_p (fn)
  388.      char *fn;
  389. {
  390.   return (fn && (index(fn+1, ':')));
  391. }
  392. #else /* not AMIGA */
  393. #define valid_filename_p(fn) (*(fn) == '/')
  394. #endif
  395. #endif /* not AMIGA */
  396. #endif /* !VMS */
  397.  
  398. /* Find the termcap entry data for terminal type NAME
  399.    and store it in the block that BP points to.
  400.    Record its address for future use.
  401.  
  402.    If BP is null, space is dynamically allocated.
  403.  
  404.    Return -1 if there is some difficulty accessing the data base
  405.    of terminal types,
  406.    0 if the data base is accessible but the type NAME is not defined
  407.    in it, and some other value otherwise.  */
  408.  
  409. int
  410. tgetent (bp, name)
  411.      char *bp, *name;
  412. {
  413.   register char *termcap_name;
  414.   register int fd;
  415.   struct buffer buf;
  416.   register char *bp1;
  417.   char *bp2;
  418.   char *term;
  419.   int malloc_size = 0;
  420.   register int c;
  421.   char *tcenv;            /* TERMCAP value, if it contains :tc=.  */
  422.   char *indirect = NULL;    /* Terminal type in :tc= in TERMCAP value.  */
  423.   int filep;
  424.  
  425. #ifdef INTERNAL_TERMINAL
  426.   /* For the internal terminal we don't want to read any termcap file,
  427.      so fake it.  */
  428.   if (!strcmp (name, "internal"))
  429.     {
  430.       term = INTERNAL_TERMINAL;
  431.       if (!bp)
  432.     {
  433.       malloc_size = 1 + strlen (term);
  434.       bp = (char *) xmalloc (malloc_size);
  435.     }
  436.       strcpy (bp, term);
  437.       goto ret;
  438.     }
  439. #endif /* INTERNAL_TERMINAL */
  440.  
  441.   termcap_name = getenv ("TERMCAP");
  442.   if (termcap_name && *termcap_name == '\0')
  443.     termcap_name = NULL;
  444. #if defined (MSDOS) && !defined (TEST)
  445.   if (termcap_name && (*termcap_name == '\\'
  446.                || *termcap_name == '/'
  447.                || termcap_name[1] == ':'))
  448.     dostounix_filename(termcap_name);
  449. #endif
  450.  
  451. #ifdef AMIGA
  452.   filep = termcap_name != NULL; /* assume ok */
  453. #else
  454.   filep = termcap_name && valid_filename_p (termcap_name);
  455. #endif
  456.   
  457.   /* If termcap_name is non-null and starts with / (in the un*x case, that is),
  458.      it is a file name to use instead of /etc/termcap.
  459.      If it is non-null and does not start with /,
  460.      it is the entry itself, but only if
  461.      the name the caller requested matches the TERM variable.  */
  462.  
  463.   if (termcap_name && !filep && !strcmp (name, getenv ("TERM")))
  464.     {
  465.       indirect = tgetst1 (find_capability (termcap_name, "tc"), (char **) 0);
  466.       if (!indirect)
  467.     {
  468.       if (!bp)
  469.         bp = termcap_name;
  470.       else
  471.         strcpy (bp, termcap_name);
  472.       goto ret;
  473.     }
  474.       else
  475.     {            /* It has tc=.  Need to read /etc/termcap.  */
  476.       tcenv = termcap_name;
  477.        termcap_name = NULL;
  478.     }
  479.     }
  480.  
  481.   if (!termcap_name || !filep)
  482.     termcap_name = TERMCAP_NAME;
  483.  
  484.   /* Here we know we must search a file and termcap_name has its name.  */
  485.  
  486. #ifdef MSDOS
  487.   fd = open (termcap_name, O_RDONLY|O_TEXT, 0);
  488. #else
  489.   fd = open (termcap_name, O_RDONLY, 0);
  490. #endif
  491.   if (fd < 0)
  492.     return -1;
  493.  
  494.   buf.size = BUFSIZE;
  495.   /* Add 1 to size to ensure room for terminating null.  */
  496.   buf.beg = (char *) xmalloc (buf.size + 1);
  497.   term = indirect ? indirect : name;
  498.  
  499.   if (!bp)
  500.     {
  501.       malloc_size = indirect ? strlen (tcenv) + 1 : buf.size;
  502.       bp = (char *) xmalloc (malloc_size);
  503.     }
  504.   bp1 = bp;
  505.  
  506.   if (indirect)
  507.     /* Copy the data from the environment variable.  */
  508.     {
  509.       strcpy (bp, tcenv);
  510.       bp1 += strlen (tcenv);
  511.     }
  512.  
  513.   while (term)
  514.     {
  515.       /* Scan the file, reading it via buf, till find start of main entry.  */
  516.       if (scan_file (term, fd, &buf) == 0)
  517.     {
  518.       close (fd);
  519.       free (buf.beg);
  520.       if (malloc_size)
  521.         free (bp);
  522.       return 0;
  523.     }
  524.  
  525.       /* Free old `term' if appropriate.  */
  526.       if (term != name)
  527.     free (term);
  528.  
  529.       /* If BP is malloc'd by us, make sure it is big enough.  */
  530.       if (malloc_size)
  531.     {
  532.       malloc_size = bp1 - bp + buf.size;
  533.       termcap_name = (char *) xrealloc (bp, malloc_size);
  534.       bp1 += termcap_name - bp;
  535.       bp = termcap_name;
  536.     }
  537.  
  538.       bp2 = bp1;
  539.  
  540.       /* Copy the line of the entry from buf into bp.  */
  541.       termcap_name = buf.ptr;
  542.       while ((*bp1++ = c = *termcap_name++) && c != '\n')
  543.     /* Drop out any \ newline sequence.  */
  544.     if (c == '\\' && *termcap_name == '\n')
  545.       {
  546.         bp1--;
  547.         termcap_name++;
  548.       }
  549.       *bp1 = '\0';
  550.  
  551.       /* Does this entry refer to another terminal type's entry?
  552.      If something is found, copy it into heap and null-terminate it.  */
  553.       term = tgetst1 (find_capability (bp2, "tc"), (char **) 0);
  554.     }
  555.  
  556.   close (fd);
  557.   free (buf.beg);
  558.  
  559.   if (malloc_size)
  560.     bp = (char *) xrealloc (bp, bp1 - bp + 1);
  561.  
  562.  ret:
  563.   term_entry = bp;
  564.   if (malloc_size)
  565.     return (int) bp;
  566.   return 1;
  567. }
  568.  
  569. /* Given file open on FD and buffer BUFP,
  570.    scan the file from the beginning until a line is found
  571.    that starts the entry for terminal type STR.
  572.    Return 1 if successful, with that line in BUFP,
  573.    or 0 if no entry is found in the file.  */
  574.  
  575. static int
  576. scan_file (str, fd, bufp)
  577.      char *str;
  578.      int fd;
  579.      register struct buffer *bufp;
  580. {
  581.   register char *end;
  582.  
  583.   bufp->ptr = bufp->beg;
  584.   bufp->full = 0;
  585.   bufp->ateof = 0;
  586.   *bufp->ptr = '\0';
  587.  
  588.   lseek (fd, 0L, 0);
  589.  
  590.   while (!bufp->ateof)
  591.     {
  592.       /* Read a line into the buffer.  */
  593.       end = NULL;
  594.       do
  595.     {
  596.       /* if it is continued, append another line to it,
  597.          until a non-continued line ends.  */
  598.       end = gobble_line (fd, bufp, end);
  599.     }
  600.       while (!bufp->ateof && end[-2] == '\\');
  601.  
  602.       if (*bufp->ptr != '#'
  603.       && name_match (bufp->ptr, str))
  604.     return 1;
  605.  
  606.       /* Discard the line just processed.  */
  607.       bufp->ptr = end;
  608.     }
  609.   return 0;
  610. }
  611.  
  612. /* Return nonzero if NAME is one of the names specified
  613.    by termcap entry LINE.  */
  614.  
  615. static int
  616. name_match (line, name)
  617.      char *line, *name;
  618. {
  619.   register char *tem;
  620.  
  621.   if (!compare_contin (line, name))
  622.     return 1;
  623.   /* This line starts an entry.  Is it the right one?  */
  624.   for (tem = line; *tem && *tem != '\n' && *tem != ':'; tem++)
  625.     if (*tem == '|' && !compare_contin (tem + 1, name))
  626.       return 1;
  627.  
  628.   return 0;
  629. }
  630.  
  631. static int
  632. compare_contin (str1, str2)
  633.      register char *str1, *str2;
  634. {
  635.   register int c1, c2;
  636.   while (1)
  637.     {
  638.       c1 = *str1++;
  639.       c2 = *str2++;
  640.       while (c1 == '\\' && *str1 == '\n')
  641.     {
  642.       str1++;
  643.       while ((c1 = *str1++) == ' ' || c1 == '\t');
  644.     }
  645.       if (c2 == '\0')
  646.     {
  647.       /* End of type being looked up.  */
  648.       if (c1 == '|' || c1 == ':')
  649.         /* If end of name in data base, we win.  */
  650.         return 0;
  651.       else
  652.         return 1;
  653.         }
  654.       else if (c1 != c2)
  655.     return 1;
  656.     }
  657. }
  658.  
  659. /* Make sure that the buffer <- BUFP contains a full line
  660.    of the file open on FD, starting at the place BUFP->ptr
  661.    points to.  Can read more of the file, discard stuff before
  662.    BUFP->ptr, or make the buffer bigger.
  663.  
  664.    Return the pointer to after the newline ending the line,
  665.    or to the end of the file, if there is no newline to end it.
  666.  
  667.    Can also merge on continuation lines.  If APPEND_END is
  668.    non-null, it points past the newline of a line that is
  669.    continued; we add another line onto it and regard the whole
  670.    thing as one line.  The caller decides when a line is continued.  */
  671.  
  672. static char *
  673. gobble_line (fd, bufp, append_end)
  674.      int fd;
  675.      register struct buffer *bufp;
  676.      char *append_end;
  677. {
  678.   register char *end;
  679.   register int nread;
  680.   register char *buf = bufp->beg;
  681.   register char *tem;
  682.  
  683.   if (!append_end)
  684.     append_end = bufp->ptr;
  685.  
  686.   while (1)
  687.     {
  688.       end = append_end;
  689.       while (*end && *end != '\n') end++;
  690.       if (*end)
  691.         break;
  692.       if (bufp->ateof)
  693.     return buf + bufp->full;
  694.       if (bufp->ptr == buf)
  695.     {
  696.       if (bufp->full == bufp->size)
  697.         {
  698.           bufp->size *= 2;
  699.           /* Add 1 to size to ensure room for terminating null.  */
  700.           tem = (char *) xrealloc (buf, bufp->size + 1);
  701.           bufp->ptr = (bufp->ptr - buf) + tem;
  702.           append_end = (append_end - buf) + tem;
  703.           bufp->beg = buf = tem;
  704.         }
  705.     }
  706.       else
  707.     {
  708.       append_end -= bufp->ptr - buf;
  709.       bcopy (bufp->ptr, buf, bufp->full -= bufp->ptr - buf);
  710.       bufp->ptr = buf;
  711.     }
  712.       if (!(nread = read (fd, buf + bufp->full, bufp->size - bufp->full)))
  713.     bufp->ateof = 1;
  714.       bufp->full += nread;
  715.       buf[bufp->full] = '\0';
  716.     }
  717.   return end + 1;
  718. }
  719.  
  720. #ifdef TEST
  721.  
  722. #ifdef NULL
  723. #undef NULL
  724. #endif
  725.  
  726. #include <stdio.h>
  727.  
  728. main (argc, argv)
  729.      int argc;
  730.      char **argv;
  731. {
  732.   char *term;
  733.   char *buf;
  734.  
  735.   term = argv[1];
  736.   printf ("TERM: %s\n", term);
  737.  
  738.   buf = (char *) tgetent (0, term);
  739.   if ((int) buf <= 0)
  740.     {
  741.       printf ("No entry.\n");
  742.       return 0;
  743.     }
  744.  
  745.   printf ("Entry: %s\n", buf);
  746.  
  747.   tprint ("cm");
  748.   tprint ("AL");
  749.  
  750.   printf ("co: %d\n", tgetnum ("co"));
  751.   printf ("am: %d\n", tgetflag ("am"));
  752. }
  753.  
  754. tprint (cap)
  755.      char *cap;
  756. {
  757.   char *x = tgetstr (cap, 0);
  758.   register char *y;
  759.  
  760.   printf ("%s: ", cap);
  761.   if (x)
  762.     {
  763.       for (y = x; *y; y++)
  764.     if (*y <= ' ' || *y == 0177)
  765.       printf ("\\%0o", *y);
  766.     else
  767.       putchar (*y);
  768.       free (x);
  769.     }
  770.   else
  771.     printf ("none");
  772.   putchar ('\n');
  773. }
  774.  
  775. #endif /* TEST */
  776.  
  777.