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 | |||||
10 | byte* DecodeBase64(const char* src, size_t size, size_t* dst_size); | ||||
11 | |||||
12 | } // namespace art | ||||
13 | |||||
14 | #endif // ART_SRC_BASE64_H_ |