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