Code/Resource
Windows Develop
Linux-Unix program
Internet-Socket-Network
Web Server
Browser Client
Ftp Server
Ftp Client
Browser Plugins
Proxy Server
Email Server
Email Client
WEB Mail
Firewall-Security
Telnet Server
Telnet Client
ICQ-IM-Chat
Search Engine
Sniffer Package capture
Remote Control
xml-soap-webservice
P2P
WEB(ASP,PHP,...)
TCP/IP Stack
SNMP
Grid Computing
SilverLight
DNS
Cluster Service
Network Security
Communication-Mobile
Game Program
Editor
Multimedia program
Graph program
Compiler program
Compress-Decompress algrithms
Crypt_Decrypt algrithms
Mathimatics-Numerical algorithms
MultiLanguage
Disk/Storage
Java Develop
assembly language
Applications
Other systems
Database system
Embeded-SCM Develop
FlashMX/Flex
source in ebook
Delphi VCL
OS Develop
MiddleWare
MPI
MacOS develop
LabView
ELanguage
Software/Tools
E-Books
Artical/Document
ebcdic.h
Package: wow-313-source.rar [view]
Upload User: yisoukefu
Upload Date: 2020-08-09
Package Size: 39506k
Code Size: 1k
Category:
Other Games
Development Platform:
Visual C++
- /* crypto/ebcdic.h */
- #ifndef HEADER_EBCDIC_H
- #define HEADER_EBCDIC_H
- #include <sys/types.h>
- /* Avoid name clashes with other applications */
- #define os_toascii _openssl_os_toascii
- #define os_toebcdic _openssl_os_toebcdic
- #define ebcdic2ascii _openssl_ebcdic2ascii
- #define ascii2ebcdic _openssl_ascii2ebcdic
- extern const unsigned char os_toascii[256];
- extern const unsigned char os_toebcdic[256];
- void *ebcdic2ascii(void *dest, const void *srce, size_t count);
- void *ascii2ebcdic(void *dest, const void *srce, size_t count);
- #endif