/* Table for builtin transformation mapping.
- Copyright (C) 1997, 1998, 1999, 2000 Free Software Foundation, Inc.
+ Copyright (C) 1997, 1998, 1999, 2000, 2001 Free Software Foundation, Inc.
This file is part of the GNU C Library.
Contributed by Ulrich Drepper <drepper@cygnus.com>, 1997.
{
const char *name;
__gconv_fct fct;
- __gconv_init_fct init;
- __gconv_end_fct end;
int min_needed_from;
int max_needed_from;
} map[] =
{
-#define BUILTIN_TRANSFORMATION(From, To, Cost, Name, Fct, Init, End, MinF, \
- MaxF, MinT, MaxT) \
+#define BUILTIN_TRANSFORMATION(From, To, Cost, Name, Fct, MinF, MaxF, \
+ MinT, MaxT) \
{ \
.name = Name, \
.fct = Fct, \
- .init = Init, \
- .end = End, \
\
.min_needed_from = MinF, \
.max_needed_from = MaxF, \
assert (cnt < sizeof (map) / sizeof (map[0]));
step->__fct = map[cnt].fct;
- step->__init_fct = map[cnt].init;
- step->__end_fct = map[cnt].end;
+ step->__init_fct = NULL;
+ step->__end_fct = NULL;
step->__shlib_handle = NULL;
step->__modname = NULL;