Check for SYS/GL during library init. Reason is that
[AROS.git] / workbench / devs / diskimage / plugins / dmg / base64.h
blob7f8e156993e26e14c6909fae478a298e3e0b6abf
1 /*
2 ** Copyright (C) 2007-2010 Fredrik Wikstrom
3 **
4 ** This file is part of diskimage.device
5 **
6 ** Diskimage.device is free software: you can redistribute it and/or modify it
7 ** under the terms of the GNU Library General Public License as published by
8 ** the Free Software Foundation, either version 3 of the License, or (at your
9 ** option) any later version.
11 ** Diskimage.device is distributed in the hope that it will be useful, but
12 ** WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
13 ** or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public
14 ** License for more details.
16 ** You should have received a copy of the GNU Library General Public License
17 ** along with diskimage.device. If not, see <http://www.gnu.org/licenses/>.
20 #ifndef BASE64_H
21 #define BASE64_H
23 #ifndef EXEC_TYPES_H
24 #include <exec/types.h>
25 #endif
27 void cleanup_base64 (STRPTR src);
28 ULONG decode_base64(CONST_STRPTR src, STRPTR dst);
30 #endif