1
|
1 /* |
|
2 |
2847
|
3 Copyright (C) 1996, 1997 John W. Eaton |
1
|
4 |
|
5 This file is part of Octave. |
|
6 |
|
7 Octave is free software; you can redistribute it and/or modify it |
|
8 under the terms of the GNU General Public License as published by the |
|
9 Free Software Foundation; either version 2, or (at your option) any |
|
10 later version. |
|
11 |
|
12 Octave is distributed in the hope that it will be useful, but WITHOUT |
|
13 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|
15 for more details. |
|
16 |
|
17 You should have received a copy of the GNU General Public License |
|
18 along with Octave; see the file COPYING. If not, write to the Free |
1315
|
19 Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. |
1
|
20 |
|
21 */ |
|
22 |
1453
|
23 // Written by John C. Campbell <jcc@bevo.che.wisc.edu> |
1
|
24 |
1425
|
25 #if !defined (octave_file_io_h) |
|
26 #define octave_file_io_h 1 |
1
|
27 |
164
|
28 extern void initialize_file_io (void); |
1
|
29 |
164
|
30 extern void close_files (void); |
1
|
31 |
2189
|
32 extern void symbols_of_file_io (void); |
|
33 |
1
|
34 #endif |
|
35 |
|
36 /* |
|
37 ;;; Local Variables: *** |
|
38 ;;; mode: C++ *** |
|
39 ;;; End: *** |
|
40 */ |