diff options
| author | 2016-09-22 01:06:27 +0000 | |
|---|---|---|
| committer | 2016-09-22 01:06:27 +0000 | |
| commit | 4b55b4b39a09ffb6850ed8ba7c5782dea07b5b83 (patch) | |
| tree | 80b7913b16477d197be4b301bafa5667e380c162 /runtime/utils.h | |
| parent | 524dfe8086e5e6ea86f5106bab800e5390a28aed (diff) | |
| parent | 9c20a14103f87a8a7ad53f7d3e863887ea4e800a (diff) | |
Merge "Get a basic modification of dex file working"
Diffstat (limited to 'runtime/utils.h')
| -rw-r--r-- | runtime/utils.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/runtime/utils.h b/runtime/utils.h index f3284e8304..e65b947e73 100644 --- a/runtime/utils.h +++ b/runtime/utils.h @@ -116,6 +116,8 @@ inline typename std::make_unsigned<T>::type MakeUnsigned(T x) { return static_cast<typename std::make_unsigned<T>::type>(x); } +uint8_t* DecodeBase64(const char* src, size_t* dst_size); + std::string PrintableChar(uint16_t ch); // Returns an ASCII string corresponding to the given UTF-8 string. |