-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathfileio.h
53 lines (49 loc) · 1.91 KB
/
fileio.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
/*
** This file is part of the Matrix Brandy Basic VI Interpreter.
** Copyright (C) 2000-2014 David Daniels
** Copyright (C) 2018-2024 Michael McConnell and contributors
**
** Brandy is free software; you can redistribute it and/or modify
** it under the terms of the GNU General Public License as published by
** the Free Software Foundation; either version 2, or (at your option)
** any later version.
**
** Brandy is distributed in the hope that it will be useful,
** but WITHOUT ANY WARRANTY; without even the implied warranty of
** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
** GNU General Public License for more details.
**
** You should have received a copy of the GNU General Public License
** along with Brandy; see the file COPYING. If not, write to
** the Free Software Foundation, 59 Temple Place - Suite 330,
** Boston, MA 02111-1307, USA.
**
**
** This file declares the file I/O routines for the interpreter
*/
#ifndef __fileio_h
#define __fileio_h
extern boolean isapath(char *);
extern void init_fileio(void);
extern int32 fileio_openin(char *, int32);
extern int32 fileio_openout(char *, int32);
extern int32 fileio_openup(char *, int32);
extern void fileio_close(int32);
extern int32 fileio_bget(int32);
extern int32 fileio_getdol(int32, char *);
extern void fileio_getnumber(int32, boolean *, int64 *, float64 *);
extern int32 fileio_getstring(int32, char *);
extern void fileio_bput(int32, int32);
extern void fileio_bputstr(int32, char *, int32);
extern void fileio_printint(int32, int32);
extern void fileio_printuint8(int32, uint8);
extern void fileio_printint64(int32, int64);
extern void fileio_printfloat(int32, float64);
extern void fileio_printstring(int32, char *, int32);
extern int32 fileio_eof(int32);
extern int64 fileio_getptr(int32);
extern void fileio_setptr(int32, int64);
extern int64 fileio_getext(int32);
extern void fileio_setext(int32, int64);
extern void fileio_shutdown(void);
#endif