1
0
mirror of https://git.libssh.org/projects/libssh.git synced 2025-08-08 19:02:06 +03:00

base64: Added casts to GET macros to fix build warnings.

This commit is contained in:
Andreas Schneider
2011-01-02 19:32:58 +01:00
parent be3e5c35cf
commit f23880ddee

View File

@@ -39,9 +39,9 @@ static char alphabet[] = "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
#define SET_C(n, i) do { (n) |= ((i) & 63) << 6; } while (0) #define SET_C(n, i) do { (n) |= ((i) & 63) << 6; } while (0)
#define SET_D(n, i) do { (n) |= ((i) & 63); } while (0) #define SET_D(n, i) do { (n) |= ((i) & 63); } while (0)
#define GET_A(n) (((n) & 0xff0000) >> 16) #define GET_A(n) (unsigned char) (((n) & 0xff0000) >> 16)
#define GET_B(n) (((n) & 0xff00) >> 8) #define GET_B(n) (unsigned char) (((n) & 0xff00) >> 8)
#define GET_C(n) ((n) & 0xff) #define GET_C(n) (unsigned char) ((n) & 0xff)
static int _base64_to_bin(unsigned char dest[3], const char *source, int num); static int _base64_to_bin(unsigned char dest[3], const char *source, int num);
static int get_equals(char *string); static int get_equals(char *string);