/* globals.h
*
* Part of the Internet Gopher program, copyright (C) 1991
* University of Minnesota Microcomputer Workstation and Networks Center
*
* In this file you will find all of the global variables and
* global defines.
*/
#define BOOLEAN int /* for TRUE/FALSE variables */
#define ROOT_LEVEL 0 /* and be replaced with linked lists*/
#define ROOT_DIRECTORY "Root Directory" /* label for top level */
#define LINES 24
#define COLS 80
#define MAXRESP 9 /* Max size of a response list*/
/* Used in ourutil.c */
/*
* These are some funky defines that assures that global variables are
* declared only once. (when globals.c includes this file with EXTERN
* defined.
*/