Deprecate SSL_COMP_free_compression_methods() and make it a no-op
[openssl.git] / include / openssl / ebcdic.h
1
2 #ifndef HEADER_EBCDIC_H
3 # define HEADER_EBCDIC_H
4
5 # include <sys/types.h>
6
7 #ifdef  __cplusplus
8 extern "C" {
9 #endif
10
11 /* Avoid name clashes with other applications */
12 # define os_toascii   _openssl_os_toascii
13 # define os_toebcdic  _openssl_os_toebcdic
14 # define ebcdic2ascii _openssl_ebcdic2ascii
15 # define ascii2ebcdic _openssl_ascii2ebcdic
16
17 extern const unsigned char os_toascii[256];
18 extern const unsigned char os_toebcdic[256];
19 void *ebcdic2ascii(void *dest, const void *srce, size_t count);
20 void *ascii2ebcdic(void *dest, const void *srce, size_t count);
21
22 #ifdef  __cplusplus
23 }
24 #endif
25 #endif