summaryrefslogtreecommitdiff
path: root/tools/tmxcopy/base64.h
diff options
context:
space:
mode:
authorPhilipp Sehmisch <tmw@crushnet.org>2007-12-12 15:45:25 +0000
committerPhilipp Sehmisch <tmw@crushnet.org>2007-12-12 15:45:25 +0000
commit040380b706249fa55fca2778251382f0d4450125 (patch)
tree160bc37a69077501e01ea261ced18625bad3eed5 /tools/tmxcopy/base64.h
parenta98d02eaf287932e3e83a980bac41ecc01f254f6 (diff)
downloadmana-client-040380b706249fa55fca2778251382f0d4450125.tar.gz
mana-client-040380b706249fa55fca2778251382f0d4450125.tar.bz2
mana-client-040380b706249fa55fca2778251382f0d4450125.tar.xz
mana-client-040380b706249fa55fca2778251382f0d4450125.zip
Added my tmxcopy tool for copying parts of maps to other maps.
Diffstat (limited to 'tools/tmxcopy/base64.h')
-rw-r--r--tools/tmxcopy/base64.h37
1 files changed, 37 insertions, 0 deletions
diff --git a/tools/tmxcopy/base64.h b/tools/tmxcopy/base64.h
new file mode 100644
index 00000000..ff20ac53
--- /dev/null
+++ b/tools/tmxcopy/base64.h
@@ -0,0 +1,37 @@
+/*
+ +----------------------------------------------------------------------+
+ | PHP HTML Embedded Scripting Language Version 3.0 |
+ +----------------------------------------------------------------------+
+ | Copyright (c) 1997,1998 PHP Development Team (See Credits file) |
+ +----------------------------------------------------------------------+
+ | This program is free software; you can redistribute it and/or modify |
+ | it under the terms of one of the following licenses: |
+ | |
+ | A) the GNU General Public License as published by the Free Software |
+ | Foundation; either version 2 of the License, or (at your option) |
+ | any later version. |
+ | |
+ | B) the PHP License as published by the PHP Development Team and |
+ | included in the distribution in the file: LICENSE |
+ | |
+ | This program 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 both licenses referred to here. |
+ | If you did not, or have any questions about PHP licensing, please |
+ | contact core@php.net. |
+ +----------------------------------------------------------------------+
+ | Author: Jim Winstead (jimw@php.net) |
+ +----------------------------------------------------------------------+
+ */
+/* $Id$ */
+
+#ifndef _TMW_BASE64_H
+#define _TMW_BASE64_H
+
+extern unsigned char *php3_base64_encode(const unsigned char *, int, int *);
+extern unsigned char *php3_base64_decode(const unsigned char *, int, int *);
+
+#endif /* _TMW_BASE64_H */