/* %Z%%M% %I% %E% */

/*
 * Copyright (c) 1992, 1995 by Wayne C. Gramlich.
 * All rights reserved.
 *
 * Permission to use, copy, modify, distribute, and sell this software
 * for any purpose is hereby granted without fee provided that the above
 * copyright notice and this permission are retained.  The author makes
 * no representations about the suitability of this software for any purpose.
 * It is provided "as is" without express or implied warranty.
 */

/* This file contains the declarations for routines to manipulate variables: */

#ifndef VAR_EXPORTS_H
#define VAR_EXPORTS_H

#ifndef HEAP_TYPES_H
#include "heap_types.h"
#endif

#ifndef PARSER_TYPES_H
#include "parser_types.h"
#endif

#ifndef ROUTINE_TYPES_H
#include "routine_types.h"
#endif

#ifndef STR_TYPES_H
#include "str_types.h"
#endif

#ifndef TYPE_TYPES_H
#include "type_types.h"
#endif

#ifndef VAR_TYPES_H
#include "var_types.h"
#endif

#ifndef UNIX_STDIO_H
#include "unix_stdio.h"
#endif

#ifndef VAR_TYPES_H
#include "var_types.h"
#endif

#ifndef VECTOR_TYPES_H
#include "vector_types.h"
#endif

/* Var routines: */
extern Var		var_parse(Parser);
extern void		var_print(Var, Stdio, int);

/* Vars routines: */
extern void		vars_keyword_print(Vars, Stdio, Str);
extern Vars		vars_parse(Parser, Routine);
extern Type_refs	vars_to_type_refs(Vars, Type_tables);

#endif /* VAR_EXPORTS_H */

