home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 9 / 09.iso / l / l200 / 6.ddi / LIB / ADMVAR.C < prev    next >
Encoding:
C/C++ Source or Header  |  1986-09-23  |  1.3 KB  |  36 lines

  1. /*    admvar.c -- Administrative Variables (for library)
  2.  
  3.     Copyright (c) 1983 by James F. Gimpel
  4.     Copyright (c) 1983, 1984 by JMI Software Consultants, Inc.
  5.  
  6.     This module allows tailoring of the Bastoc
  7.     Library to allow for version peculiarities.
  8.  */
  9. #include "acom.h"
  10. #include "adl.h"
  11. #include "host.h"
  12.  
  13. /*    Administrative variables:
  14.  
  15.     Administrative variables in the library section are placed
  16.     in a single structure to simplify linking.
  17.  */
  18. struct adm_var avar =
  19.     {
  20.     256,        /* buf_size - size of buffers for bufferd I/O */
  21.     0,            /* margin - maximum number of characters per line,
  22.                    0 indicates no limit */
  23.     1,            /* min_bu - smallest BASIC I/O unit number */
  24.     20,            /* max_bu - largest BASIC I/O unit number */
  25.     7,            /* fltopr - number of digits PRINTed in single precision */
  26.     16,            /* dblopr - number of digits PRINTed in double precision */
  27.     "LPT1:",    /* printer name - LPRINT directs output to this file */
  28.     ",",        /* strterm - string termination characters,
  29.                    When inputting strings that are not quoted,
  30.                    the set of termination characters is
  31.                    determined by this string. */
  32.     14,            /* zoneln - zone length for columnar output */
  33.     YES,        /* needcr - need CR at end of output lines */
  34.     YES            /* kybdcr - need CR at end of output lines to keyboard devices */
  35.     };
  36.