home *** CD-ROM | disk | FTP | other *** search
/ Piper's Pit BBS/FTP: ibm 0020 - 0029 / ibm0020-0029 / ibm0028.tar / ibm0028 / GRLF-C-2.ZIP / GFUNC / GFGLOBAL.C < prev    next >
Encoding:
C/C++ Source or Header  |  1990-05-30  |  1.3 KB  |  42 lines

  1. /*
  2.  * gfglobal.c    -  Global variables for Greenleaf Functions
  3.  * contains: gmaxcol,gmaxrow,gmaxpcol,gjwidth,gtabexp,gteol,_gfvers,
  4.  * contains: _gfrev
  5.  * 
  6.  */
  7.  
  8. #define     GFGLOBALFILE
  9. #include <stdio.h>
  10. #include "gfuncts.h"
  11.  
  12. /*
  13.  * AUTHOR
  14.  *  ""   30-MAR-1987  16:06:11.73
  15.  *   Copyright (C)1987-1990 Greenleaf Software Inc. All Rights Reserved.
  16.  */
  17.  
  18. int gmaxcol=80,        /* Maximum Number of CRT Columns */
  19.     gmaxrow=25,        /* Maximum Number of CRT Rows */
  20.     gmaxpcol=80,    /* Printer width in columns */
  21.     gjwidth=80,        /* Justify Width */
  22.     gtabexp=8,        /* tab expansion */
  23.     _gvmtrp=0;        /* Have gmaxcol,gmaxrow been updated? */
  24.  
  25. char gteol='#';        /* Technical EOL for extraction ops */
  26.  
  27. int _gfvers = GFVERSION,
  28.     _gfrev  = GFREVISION;
  29. char gfcprt[]= {
  30.     0x54,0x68,0x65,0x20,0x47,0x72,0x65,0x65,0x6e,0x6c,0x65,0x61,0x66,
  31.     0x20,0x46,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x73,0x20,0x56,0x65,
  32.     0x72,0x73,0x69,0x6f,0x6e,0x20,0x33,0x2e,0x31,0x30,0x20,0x43,0x6f,
  33.     0x70,0x79,0x72,0x69,0x67,0x68,0x74,0x20,0x28,0x63,0x29,0x20,0x31,
  34.     0x39,0x38,0x34,0x2c,0x31,0x39,0x38,0x35,0x2c,0x31,0x39,0x38,0x36,
  35.     0x2c,0x31,0x39,0x38,0x37,0x20,0x47,0x72,0x65,0x65,0x6e,0x6c,0x65,
  36.     0x61,0x66,0x20,0x53,0x6f,0x66,0x74,0x77,0x61,0x72,0x65,0x20,0x49,
  37.     0x6e,0x63,0x2e,0x00
  38. };
  39.  
  40. char _gfspbuf[257]=" ";
  41.  
  42.