summaryrefslogtreecommitdiff
path: root/src/base64.h
blob: a4344ea6721ead27efa9d9b3824b759e89d787fa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// 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_