-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy patheditor.h
50 lines (45 loc) · 1.64 KB
/
editor.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
/*
** 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 defines functions associated with the editing of Basic
** programs as well as loading them from and saving them to disk
*/
#ifndef __editor_h
#define __editor_h
#include "common.h"
#define LOAD_LIBRARY TRUE
#define INSTALL_LIBRARY FALSE
extern void mark_end(byte *);
extern void edit_line(void);
extern void delete_range(int32, int32);
extern void clear_program(void);
extern void clear_tables(void);
extern void read_basic(char *);
#ifdef BRANDYAPP
extern void read_basic_block(void);
#endif
extern void write_basic(char *);
extern void read_library(char *, boolean);
extern void write_text(char *, FILE *);
extern boolean validate_program(void);
extern void renumber_program(byte *, int32, int32);
extern char *multifgets(char *mfbuf, int bufsz, FILE *handle);
#endif