added optional button to restart game (door, panel and touch variants)
[rocksndiamonds.git] / src / libgame / base64.h
1 // ============================================================================
2 // Artsoft Retro-Game Library
3 // ----------------------------------------------------------------------------
4 // (c) 1995-2021 by Artsoft Entertainment
5 //                  Holger Schemel
6 //                  info@artsoft.org
7 //                  https://www.artsoft.org/
8 // ----------------------------------------------------------------------------
9 // base64.h
10 // ============================================================================
11
12 #ifndef BASE64_H
13 #define BASE64_H
14
15 #include "system.h"
16
17
18 int base64_encoded_size(int);
19 int base64_decoded_size(const char *);
20
21 void base64_encode(char *, const void *, int);
22 void base64_decode(byte *, const char *);
23
24 #endif