blob: 160046db63e62b5c7eb496ef9013da930d605e41 [file] [log] [blame]
Carl Shapiro80d4dde2011-06-28 16:24:07 -07001// 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
8namespace art {
9
Carl Shapiroa506cb02011-06-28 22:53:46 -070010// Decodes a C string with base64 encoded data.
11byte* DecodeBase64(const char* src, size_t* dst_size);
Carl Shapiro80d4dde2011-06-28 16:24:07 -070012
13} // namespace art
14
15#endif // ART_SRC_BASE64_H_