blob: 160046db63e62b5c7eb496ef9013da930d605e41 [file] [log] [blame]
// Copyright 2011 Google Inc. All Rights Reserved.
#ifndef ART_SRC_BASE64_H_
#define ART_SRC_BASE64_H_
#include "src/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_