move base64 into streamreader

This commit is contained in:
badaix 2018-03-16 21:08:17 +01:00
parent b26bd41aff
commit 08906403d1
7 changed files with 7 additions and 4 deletions

View file

@ -1,6 +1,8 @@
#ifndef ENDIAN_HPP
#define ENDIAN_HPP
#include <cstdint>
#ifdef IS_BIG_ENDIAN
# define SWAP_16(x) (__builtin_bswap16(x))
# define SWAP_32(x) (__builtin_bswap32(x))