1 |
aw0a |
1 |
/* |
2 |
|
|
* Set Instance Output Routine |
3 |
|
|
* by Tom Epperly |
4 |
|
|
* Created: 2/15/90 |
5 |
|
|
* Version: $Revision: 1.5 $ |
6 |
|
|
* Version control file: $RCSfile: setinst_io.h,v $ |
7 |
|
|
* Date last modified: $Date: 1997/07/18 12:34:41 $ |
8 |
|
|
* Last modified by: $Author: mthomas $ |
9 |
|
|
* |
10 |
|
|
* This file is part of the Ascend Language Interpreter. |
11 |
|
|
* |
12 |
|
|
* Copyright (C) 1990, 1993, 1994 Thomas Guthrie Epperly |
13 |
|
|
* |
14 |
|
|
* The Ascend Language Interpreter is free software; you can redistribute |
15 |
|
|
* it and/or modify it under the terms of the GNU General Public License as |
16 |
|
|
* published by the Free Software Foundation; either version 2 of the |
17 |
|
|
* License, or (at your option) any later version. |
18 |
|
|
* |
19 |
|
|
* The Ascend Language Interpreter is distributed in hope that it will be |
20 |
|
|
* useful, but WITHOUT ANY WARRANTY; without even the implied warranty of |
21 |
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
22 |
|
|
* General Public License for more details. |
23 |
|
|
* |
24 |
|
|
* You should have received a copy of the GNU General Public License along |
25 |
|
|
* with the program; if not, write to the Free Software Foundation, Inc., 675 |
26 |
|
|
* Mass Ave, Cambridge, MA 02139 USA. Check the file named COPYING. |
27 |
|
|
*/ |
28 |
|
|
|
29 |
|
|
/* |
30 |
|
|
* When #including setinst_io.h, make sure these files are #included first: |
31 |
|
|
* #include "compiler.h" |
32 |
|
|
* #include "setinstval.h" |
33 |
|
|
*/ |
34 |
|
|
|
35 |
|
|
|
36 |
|
|
#ifndef __SETINST_IO_H_SEEN__ |
37 |
|
|
#define __SETINST_IO_H_SEEN__ |
38 |
|
|
/* requires |
39 |
|
|
# #include<stdio.h> |
40 |
|
|
# #include"compiler.h" |
41 |
|
|
# #include"setinstval.h" |
42 |
|
|
*/ |
43 |
|
|
|
44 |
|
|
extern void WriteInstSet(FILE *,CONST struct set_t *); |
45 |
|
|
/* |
46 |
|
|
* void WriteInstSet(f,s) |
47 |
|
|
* FILE *f; |
48 |
|
|
* const struct set_t *s; |
49 |
|
|
*/ |
50 |
|
|
#endif /* __SETINST_IO_H_SEEN__ */ |