/* Module Name: GloDef.H
 *
 * Description:
 *      Definitions for GloTeX data structures
 *
 * Author:      R L Aurbach     CR&DS MIS Group    17-Aug-1986
 *
 * Modification History:
 *
 * Version     Initials    Date         Description
 * ------------------------------------------------------------------------
 * 1-001        RLA     17-Aug-1986     Original Code
 * 2-001        F.H.    17-May-1991     converted to portable C
 * 2-002        S.I.    30-Mar-1992     added /glossaryname for intern. support
 *
 */

/*
 * $Id: GloDef.h 3.0.1.2 1994/04/04 22:42:59 steppler Exp $
 *
 * $Log: GloDef.h $
 * Revision 3.0.1.2  1994/04/04  22:42:59  steppler
 * real official release now
 *
 * Revision 3.0.1.1  1994/04/04  18:01:51  steppler
 * upgrade to new revision only
 *
 * Revision 3.0  1994/04/03  22:14:05  steppler
 * official release
 *
 * Revision 2.1.2.1  1994/04/03  19:04:34  steppler
 * upgrade to new revision only
 *
 * Revision 2.1.1.1  1994/04/02  19:20:00  steppler
 * *** empty log message ***
 *
 *
 */


/* Definitions                                                  */

#define TRUE        1
#define FALSE       0
#define STRDYN      { 0, DSC$K_DTYPE_T, DSC$K_CLASS_D, 0 }
#define NONE        0
#define ARTICLE     1
#define REPORT      2
#define linesz      133 /* Max size of a line     */

/* Declarations                                                 */

typedef struct string
{
    struct string *next;
    char *desc;
}
STRING, *STRING_PTR;

typedef struct node
{
    struct node *next;
    char *spell;
    char *item;
    struct string *hdr;
}
NODE, *NODE_PTR;
