aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/basetypes/MCBase64.h
blob: ff61188bceab0bb8902d3a434f8c5c3a489789ae (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
//
//  MCBase64.h
//  mailcore2
//
//  Created by DINH Viêt Hoà on 7/30/13.
//  Copyright (c) 2013 MailCore. All rights reserved.
//

#ifndef __MAILCORE_MCBASE64_H_
#define __MAILCORE_MCBASE64_H_

#ifdef __cplusplus
extern "C" {
#endif

extern char * MCDecodeBase64(const char * in, int len);
extern char * MCEncodeBase64(const char * in, int len);

#ifdef __cplusplus
}
#endif

#endif