aboutsummaryrefslogtreecommitdiffstats
path: root/epan/strutil.c
diff options
context:
space:
mode:
authorAnders Broman <anders.broman@ericsson.com>2009-10-23 01:56:09 +0000
committerAnders Broman <anders.broman@ericsson.com>2009-10-23 01:56:09 +0000
commitf82442badc4a05ba915274868d28beb7960a6a61 (patch)
tree0d4922ee451cbc2d2be151a04b5df83b347de7e3 /epan/strutil.c
parent0bbe1cb5466e05c2d9498a1bddd5f54f4151907c (diff)
Move IA5_7BIT_decode to strutil.c
svn path=/trunk/; revision=30669
Diffstat (limited to 'epan/strutil.c')
-rw-r--r--epan/strutil.c54
1 files changed, 54 insertions, 0 deletions
diff --git a/epan/strutil.c b/epan/strutil.c
index d3e2d19522..b2a77f54c7 100644
--- a/epan/strutil.c
+++ b/epan/strutil.c
@@ -1023,3 +1023,57 @@ escape_string(char *buf, const char *string)
*bufp = '\0';
return buf;
}
+
+#define GN_CHAR_ALPHABET_SIZE 128
+
+static gunichar IA5_default_alphabet[GN_CHAR_ALPHABET_SIZE] = {
+
+ /*ITU-T recommendation T.50 specifies International Reference Alphabet 5 (IA5) */
+
+ '?', '?', '?', '?', '?', '?', '?', '?',
+ '?', '?', '?', '?', '?', '?', '?', '?',
+ '?', '?', '?', '?', '?', '?', '?', '?',
+ '?', '?', '?', '?', '?', '?', '?', '?',
+ ' ', '!', '\"','#', '$', '%', '&', '\'',
+ '(', ')', '*', '+', ',', '-', '.', '/',
+ '0', '1', '2', '3', '4', '5', '6', '7',
+ '8', '9', ':', ';', '<', '=', '>', '?',
+ '@', 'A', 'B', 'C', 'D', 'E', 'F', 'G',
+ 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O',
+ 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W',
+ 'X', 'Y', 'Z', '[', '\\', ']', '^', '_',
+ '`', 'a', 'b', 'c', 'd', 'e', 'f', 'g',
+ 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o',
+ 'p', 'q', 'r', 's', 't', 'u', 'v', 'w',
+ 'x', 'y', 'z', '{', '|', '}', '~', '?'
+};
+
+static gunichar
+char_def_ia5_alphabet_decode(unsigned char value)
+{
+ if (value < GN_CHAR_ALPHABET_SIZE)
+ {
+ return IA5_default_alphabet[value];
+ }
+ else
+ {
+ return '?';
+ }
+}
+
+void
+IA5_7BIT_decode(unsigned char * dest, const unsigned char* src, int len)
+{
+ int i, j;
+ gunichar buf;
+
+
+ for (i = 0, j = 0; j < len; j++)
+ {
+ buf = char_def_ia5_alphabet_decode(src[j]);
+ i += g_unichar_to_utf8(buf,&(dest[i]));
+ }
+ dest[i]=0;
+ return;
+}
+