mirror of
https://git.libssh.org/projects/libssh.git
synced 2026-02-04 12:20:42 +09:00
Fix the prototype.
git-svn-id: svn+ssh://svn.berlios.de/svnroot/repos/libssh/trunk@738 7dcaeef0-15fb-0310-b436-a5af3365683c
This commit is contained in:
@@ -42,7 +42,7 @@ static char alphabet[]="ABCDEFGHIJKLMNOPQRSTUVWXYZ"
|
||||
#define GET_B(n) ((n & 0xff00) >> 8)
|
||||
#define GET_C(n) (n & 0xff)
|
||||
|
||||
static int _base64_to_bin(unsigned char dest[3], char *source,int num);
|
||||
static int _base64_to_bin(unsigned char dest[3], const char *source, int num);
|
||||
static int get_equals(char *string);
|
||||
|
||||
/* First part: base64 to binary */
|
||||
|
||||
Reference in New Issue
Block a user