/* %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.
 */

#ifndef VAR_TYPES_H
#define VAR_TYPES_H

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

#ifndef TABLE_TYPES_H
#include "table_types.h"
#endif

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

typedef struct Var_struct	*Var;
typedef Table(Str, Var)		Var_table;
typedef Vec(Var)		Vars;

#endif /* VAR_TYPES_H */

