home *** CD-ROM | disk | FTP | other *** search
- /*
- * gfglobal.c - Global variables for Greenleaf Functions
- * contains: gmaxcol,gmaxrow,gmaxpcol,gjwidth,gtabexp,gteol,_gfvers,
- * contains: _gfrev
- *
- */
-
- #define GFGLOBALFILE
- #include <stdio.h>
- #include "gfuncts.h"
-
- /*
- * AUTHOR
- * "" 30-MAR-1987 16:06:11.73
- * Copyright (C)1987-1990 Greenleaf Software Inc. All Rights Reserved.
- */
-
- int gmaxcol=80, /* Maximum Number of CRT Columns */
- gmaxrow=25, /* Maximum Number of CRT Rows */
- gmaxpcol=80, /* Printer width in columns */
- gjwidth=80, /* Justify Width */
- gtabexp=8, /* tab expansion */
- _gvmtrp=0; /* Have gmaxcol,gmaxrow been updated? */
-
- char gteol='#'; /* Technical EOL for extraction ops */
-
- int _gfvers = GFVERSION,
- _gfrev = GFREVISION;
- char gfcprt[]= {
- 0x54,0x68,0x65,0x20,0x47,0x72,0x65,0x65,0x6e,0x6c,0x65,0x61,0x66,
- 0x20,0x46,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x73,0x20,0x56,0x65,
- 0x72,0x73,0x69,0x6f,0x6e,0x20,0x33,0x2e,0x31,0x30,0x20,0x43,0x6f,
- 0x70,0x79,0x72,0x69,0x67,0x68,0x74,0x20,0x28,0x63,0x29,0x20,0x31,
- 0x39,0x38,0x34,0x2c,0x31,0x39,0x38,0x35,0x2c,0x31,0x39,0x38,0x36,
- 0x2c,0x31,0x39,0x38,0x37,0x20,0x47,0x72,0x65,0x65,0x6e,0x6c,0x65,
- 0x61,0x66,0x20,0x53,0x6f,0x66,0x74,0x77,0x61,0x72,0x65,0x20,0x49,
- 0x6e,0x63,0x2e,0x00
- };
-
- char _gfspbuf[257]=" ";
-
-