Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(395)

Side by Side Diff: openssl/crypto/ebcdic.h

Issue 2072073002: Delete bundled copy of OpenSSL and replace with README. (Closed) Base URL: https://chromium.googlesource.com/chromium/deps/openssl@master
Patch Set: Delete bundled copy of OpenSSL and replace with README. Created 4 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « openssl/crypto/dso/dso_openssl.c ('k') | openssl/crypto/ebcdic.c » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 /* crypto/ebcdic.h */
2
3 #ifndef HEADER_EBCDIC_H
4 #define HEADER_EBCDIC_H
5
6 #include <sys/types.h>
7
8 /* Avoid name clashes with other applications */
9 #define os_toascii _openssl_os_toascii
10 #define os_toebcdic _openssl_os_toebcdic
11 #define ebcdic2ascii _openssl_ebcdic2ascii
12 #define ascii2ebcdic _openssl_ascii2ebcdic
13
14 extern const unsigned char os_toascii[256];
15 extern const unsigned char os_toebcdic[256];
16 void *ebcdic2ascii(void *dest, const void *srce, size_t count);
17 void *ascii2ebcdic(void *dest, const void *srce, size_t count);
18
19 #endif
OLDNEW
« no previous file with comments | « openssl/crypto/dso/dso_openssl.c ('k') | openssl/crypto/ebcdic.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698