blob: a4344ea6721ead27efa9d9b3824b759e89d787fa [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
Brian Carlstrom578bbdc2011-07-21 14:07:47 -07006#include "globals.h"
Carl Shapiro80d4dde2011-06-28 16:24:07 -07007
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_