aboutsummaryrefslogtreecommitdiff
path: root/iconvdata/t61.c
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>1998-04-13 17:54:00 +0000
committerUlrich Drepper <drepper@redhat.com>1998-04-13 17:54:00 +0000
commit2aea1d796ea60b9e49d12257dc2a94bf3dd4ef26 (patch)
treea783a384cc0f7cfcc8225c407e8255a6c25e5816 /iconvdata/t61.c
parent40c0dc53b080fd3e1ace4fbe2cb79007babec6c3 (diff)
downloadglibc-2aea1d796ea60b9e49d12257dc2a94bf3dd4ef26.tar
glibc-2aea1d796ea60b9e49d12257dc2a94bf3dd4ef26.tar.gz
glibc-2aea1d796ea60b9e49d12257dc2a94bf3dd4ef26.tar.bz2
glibc-2aea1d796ea60b9e49d12257dc2a94bf3dd4ef26.zip
Update.
1998-04-13 17:40 Ulrich Drepper <drepper@cygnus.com> * iconvdata/8bit-gap.c: Simplify step data handling. * iconvdata/8bit-generic.c: Likewise. * iconvdata/big5.c: Likewise. * iconvdata/euccn.c: Likewise. * iconvdata/eucjp.c: Likewise. * iconvdata/euckr.c: Likewise. * iconvdata/euctw.c: Likewise. * iconvdata/iso6937.c: Likewise. * iconvdata/iso8859-1.c: Likewise. * iconvdata/jis0208.h: Likewise. * iconvdata/jis0212.c: Likewise. * iconvdata/jis0212.h: Likewise. * iconvdata/johab.c: Likewise. * iconvdata/ksc5601.h: Likewise. * iconvdata/sjis.c: Likewise. * iconvdata/t61.c: Likewise. * iconvdata/uhc.c: Likewise.
Diffstat (limited to 'iconvdata/t61.c')
-rw-r--r--iconvdata/t61.c45
1 files changed, 9 insertions, 36 deletions
diff --git a/iconvdata/t61.c b/iconvdata/t61.c
index 7d4314dfd2..d532438bf9 100644
--- a/iconvdata/t61.c
+++ b/iconvdata/t61.c
@@ -19,7 +19,6 @@
Boston, MA 02111-1307, USA. */
#include <gconv.h>
-#include <stdlib.h>
#include <string.h>
/* Data taken from the WG15 tables. */
@@ -364,53 +363,29 @@ static const char from_ucs4[][2] =
};
/* Direction of the transformation. */
-enum direction
-{
- illegal,
- to_t61,
- from_t61
-};
-
-struct t61_data
-{
- enum direction dir;
-};
+static int to_t61_object;
+static int from_t61_object;
int
gconv_init (struct gconv_step *step)
{
/* Determine which direction. */
- struct t61_data *new_data;
- enum direction dir;
- int result;
-
if (strcasestr (step->from_name, "T.61") != NULL)
- dir = from_t61;
+ step->data = &from_t61_object;
else if (strcasestr (step->to_name, "T.61") != NULL)
- dir = to_t61;
+ step->data = &to_t61_object;
else
- dir = illegal;
-
- result = GCONV_NOCONV;
- if (dir != illegal
- && ((new_data
- = (struct t61_data *) malloc (sizeof (struct t61_data)))
- != NULL))
- {
- new_data->dir = dir;
- step->data = new_data;
- result = GCONV_OK;
- }
+ return GCONV_NOCONV;
- return result;
+ return GCONV_OK;
}
void
gconv_end (struct gconv_step *data)
{
- free (data->data);
+ /* Nothing to do. */
}
@@ -447,15 +422,13 @@ gconv (struct gconv_step *step, struct gconv_step_data *data,
}
else
{
- enum direction dir = ((struct t61_data *) step->data)->dir;
-
do_write = 0;
do
{
result = GCONV_OK;
- if (dir == from_t61)
+ if (step->data == &from_t61_object)
{
size_t inchars = *inbufsize;
size_t outwchars = data->outbufavail;
@@ -597,7 +570,7 @@ gconv (struct gconv_step *step, struct gconv_step_data *data,
if (data->is_last)
{
/* This is the last step. */
- result = (*inbufsize > (dir == from_t61
+ result = (*inbufsize > (step->data == &from_t61_object
? 0 : sizeof (wchar_t) - 1)
? GCONV_FULL_OUTPUT : GCONV_EMPTY_INPUT);
break;