/*
 *  misc1.h
 *
 *  Created September 15, 1990 by Raymie Stata
 *  (c) 1990 Raymie Stata, All Rights Reserved
 */

#ifndef RSMISC1
#define RSMISC1

typedef struct procstruct *Proctype;
typedef struct declstruct *Decl;
typedef struct varstruct  *Var;
typedef struct mthdstruct *Method;

extern void misc1_init();
 
extern Decl   decl_create();
extern char   *decl_unparse();

extern Var    var_create();
extern int    var_eq();
extern char   *var_unparse();

extern Method mthd_create();
extern int    mthd_eq();
extern char   *mthd_unparse();

extern Proctype proc_create();
extern char   *proc_unparse();
#endif
