aboutsummaryrefslogtreecommitdiffstats
path: root/util.h
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2004-09-10 22:59:37 +0000
committerGuy Harris <guy@alum.mit.edu>2004-09-10 22:59:37 +0000
commitac982aa7a5c0b29c4b851d6b57bc9ec72d1f6454 (patch)
tree711438695820ec3ecf8edf542e88753ba315921a /util.h
parent3c6646602932ccbfe71fc40d6ba503712c160790 (diff)
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.h5
1 files changed, 0 insertions, 5 deletions
diff --git a/util.h b/util.h
index 9f87a0f97b..f4ed9dc2cb 100644
--- a/util.h
+++ b/util.h
@@ -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. */