aboutsummaryrefslogtreecommitdiff
path: root/iconv/gconv_int.h
diff options
context:
space:
mode:
Diffstat (limited to 'iconv/gconv_int.h')
-rw-r--r--iconv/gconv_int.h9
1 files changed, 1 insertions, 8 deletions
diff --git a/iconv/gconv_int.h b/iconv/gconv_int.h
index 6d199715ca..44d4d36445 100644
--- a/iconv/gconv_int.h
+++ b/iconv/gconv_int.h
@@ -21,7 +21,6 @@
#define _GCONV_INT_H 1
#include "gconv.h"
-#include <regex.h>
__BEGIN_DECLS
@@ -76,12 +75,7 @@ struct __gconv_loaded_object
/* Description for an available conversion module. */
struct gconv_module
{
- const char *from_pattern;
- const char *from_constpfx;
- size_t from_constpfx_len;
- const regex_t *from_regex;
- regex_t from_regex_mem;
-
+ const char *from_string;
const char *to_string;
int cost_hi;
@@ -91,7 +85,6 @@ struct gconv_module
struct gconv_module *left; /* Prefix smaller. */
struct gconv_module *same; /* List of entries with identical prefix. */
- struct gconv_module *matching;/* Next node with more specific prefix. */
struct gconv_module *right; /* Prefix larger. */
};