aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/basetypes/MCBase64.h
blob: 152b3b1b8d5dab35f99bf1ae368df6707837c5bc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
//
//  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, int * p_outlen);
extern char * MCEncodeBase64(const char * in, int len);

#ifdef __cplusplus
}
#endif

#endif