blob: f0ee9f9b20969d9d926c269a7f19a1e70a888390 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#ifndef CEPH_ARMOR_H
#define CEPH_ARMOR_H
#ifdef __cplusplus
extern "C" {
#endif
int ceph_armor(char *dst, char * const dst_end,
const char * src, const char *end);
int ceph_armor_linebreak(char *dst, char * const dst_end,
const char *src, const char *end,
int line_width);
int ceph_unarmor(char *dst, char * const dst_end,
const char *src, const char * const end);
#ifdef __cplusplus
}
#endif
#endif
|