// Copyright 2011 Google Inc. All Rights Reserved. #ifndef ART_SRC_BASE64_H_ #define ART_SRC_BASE64_H_ #include "globals.h" namespace art { // Decodes a C string with base64 encoded data. byte* DecodeBase64(const char* src, size_t* dst_size); } // namespace art #endif // ART_SRC_BASE64_H_