Carl Shapiro | 80d4dde | 2011-06-28 16:24:07 -0700 | [diff] [blame] | 1 | // Copyright 2011 Google Inc. All Rights Reserved. |
2 | |||||
3 | #ifndef ART_SRC_BASE64_H_ | ||||
4 | #define ART_SRC_BASE64_H_ | ||||
5 | |||||
6 | #include "src/globals.h" | ||||
7 | |||||
8 | namespace art { | ||||
9 | |||||
Carl Shapiro | a506cb0 | 2011-06-28 22:53:46 -0700 | [diff] [blame^] | 10 | // Decodes a C string with base64 encoded data. |
11 | byte* DecodeBase64(const char* src, size_t* dst_size); | ||||
Carl Shapiro | 80d4dde | 2011-06-28 16:24:07 -0700 | [diff] [blame] | 12 | |
13 | } // namespace art | ||||
14 | |||||
15 | #endif // ART_SRC_BASE64_H_ |