diff options
author | Guy Harris <guy@alum.mit.edu> | 2004-09-10 22:59:37 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2004-09-10 22:59:37 +0000 |
commit | ac982aa7a5c0b29c4b851d6b57bc9ec72d1f6454 (patch) | |
tree | 711438695820ec3ecf8edf542e88753ba315921a /util.h | |
parent | 3c6646602932ccbfe71fc40d6ba503712c160790 (diff) | |
download | wireshark-ac982aa7a5c0b29c4b851d6b57bc9ec72d1f6454.tar.gz wireshark-ac982aa7a5c0b29c4b851d6b57bc9ec72d1f6454.tar.bz2 wireshark-ac982aa7a5c0b29c4b851d6b57bc9ec72d1f6454.zip |
Move the stuff to handle ASCII <-> EBCDIC conversions to
"epan/charsets.c"; other character set translation code should perhaps
go there as well.
svn path=/trunk/; revision=11958
Diffstat (limited to 'util.h')
-rw-r--r-- | util.h | 5 |
1 files changed, 0 insertions, 5 deletions
@@ -37,11 +37,6 @@ int create_tempfile(char *, int, const char *); */ char *get_args_as_string(int argc, char **argv, int optind); -void ASCII_to_EBCDIC(guint8 *buf, guint bytes); -guint8 ASCII_to_EBCDIC1(guint8 c); -void EBCDIC_to_ASCII(guint8 *buf, guint bytes); -guint8 EBCDIC_to_ASCII1(guint8 c); - /* Compute the difference between two seconds/microseconds time stamps. */ void compute_timestamp_diff(gint *, gint *, guint32, guint32, guint32, guint32); /* In-place decoding of a base64 string. */ |