summaryrefslogtreecommitdiff
path: root/apps/plugins/zxbox/misc.h
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/zxbox/misc.h')
-rw-r--r--apps/plugins/zxbox/misc.h38
1 files changed, 0 insertions, 38 deletions
diff --git a/apps/plugins/zxbox/misc.h b/apps/plugins/zxbox/misc.h
deleted file mode 100644
index 2dc9f60105..0000000000
--- a/apps/plugins/zxbox/misc.h
+++ /dev/null
@@ -1,38 +0,0 @@
1/*
2 * Copyright (C) 1996-1998 Szeredi Miklos
3 * Email: mszeredi@inf.bme.hu
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version. See the file COPYING.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
18 *
19 */
20
21#ifndef MISC_H
22#define MISC_H
23
24#include <sys/types.h>
25
26extern char *get_base_name(char *fname);
27extern int check_ext(const char *filename, const char *ext);
28extern void add_extension(char *filename, const char *ext);
29extern int file_exist(const char *filename);
30extern int try_extension(char *filename, const char *ext);
31extern char *spif_get_tape_fileinfo(int *startp, int *nump);
32extern void *malloc_err(size_t size);
33extern char *make_string(char *ostr, const char *nstr);
34extern void free_string(char *ostr);
35
36extern int mis_strcasecmp(const char *s1, const char *s2);
37
38#endif /* MISC_H */