1/* BEGIN LICENSE BLOCK
2 * Version: CMPL 1.1
3 *
4 * The contents of this file are subject to the Cisco-style Mozilla Public
5 * License Version 1.1 (the "License"); you may not use this file except
6 * in compliance with the License.  You may obtain a copy of the License
7 * at www.eclipse-clp.org/license.
8 *
9 * Software distributed under the License is distributed on an "AS IS"
10 * basis, WITHOUT WARRANTY OF ANY KIND, either express or implied.  See
11 * the License for the specific language governing rights and limitations
12 * under the License.
13 *
14 * The Original Code is  The ECLiPSe Constraint Logic Programming System.
15 * The Initial Developer of the Original Code is  Cisco Systems, Inc.
16 * Portions created by the Initial Developer are
17 * Copyright (C) 1989-2006 Cisco Systems, Inc.  All Rights Reserved.
18 *
19 * Contributor(s):
20 *
21 * END LICENSE BLOCK */
22
23
24/*
25 * SEPIA INCLUDE FILE
26 *
27 * VERSION	$Id: read.h,v 1.1 2008/06/30 17:43:58 jschimpf Exp $
28 */
29
30/*
31 * IDENTIFICATION		read.h
32 *
33 * DESCRIPTION
34 *
35 *
36 * CONTENTS:
37 *
38 */
39
40
41/*
42 * values for parser options
43 */
44
45#define VARNAMES_PLEASE	1
46#define LAYOUT_PLEASE	2
47
48
49Extern int ec_read_term ARGS((stream_id nst, int options, pword *result,
50			pword *varlist, int *has_macro, value vm, type tm));
51