sl@0: /* crypto/ebcdic.h */ sl@0: /* sl@0: © Portions copyright (c) 2006 Nokia Corporation. All rights reserved. sl@0: */ sl@0: sl@0: #ifndef HEADER_EBCDIC_H sl@0: #define HEADER_EBCDIC_H sl@0: #ifdef SYMBIAN sl@0: #include sl@0: #endif sl@0: #include sl@0: sl@0: /* Avoid name clashes with other applications */ sl@0: #define os_toascii _openssl_os_toascii sl@0: #define os_toebcdic _openssl_os_toebcdic sl@0: #define ebcdic2ascii _openssl_ebcdic2ascii sl@0: #define ascii2ebcdic _openssl_ascii2ebcdic sl@0: sl@0: IMPORT_C extern const unsigned char os_toascii[256]; sl@0: IMPORT_C extern const unsigned char os_toebcdic[256]; sl@0: IMPORT_C void *ebcdic2ascii(void *dest, const void *srce, size_t count); sl@0: IMPORT_C void *ascii2ebcdic(void *dest, const void *srce, size_t count); sl@0: sl@0: #endif