summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJens Arnold <amiconn@rockbox.org>2007-05-19 19:15:14 +0000
committerJens Arnold <amiconn@rockbox.org>2007-05-19 19:15:14 +0000
commit2dddc1c0d49bf87c1f977406aa29dec5d7480f67 (patch)
tree3f3b6731286a9afc4882891d66d3737ca6d2a277
parent52986fb79ea70f09fff8000d13dc56b8e1e237d4 (diff)
downloadrockbox-2dddc1c0d49bf87c1f977406aa29dec5d7480f67.tar.gz
rockbox-2dddc1c0d49bf87c1f977406aa29dec5d7480f67.zip
Fix name collision on misc.h between zxbox and core.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@13421 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--apps/plugins/zxbox/zxmisc.h38
1 files changed, 38 insertions, 0 deletions
diff --git a/apps/plugins/zxbox/zxmisc.h b/apps/plugins/zxbox/zxmisc.h
new file mode 100644
index 0000000000..4ad25a0604
--- /dev/null
+++ b/apps/plugins/zxbox/zxmisc.h
@@ -0,0 +1,38 @@
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 ZXMISC_H
22#define ZXMISC_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 /* ZXMISC_H */