diff options
author | Ulrich Drepper <drepper@redhat.com> | 1998-04-13 17:54:00 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 1998-04-13 17:54:00 +0000 |
commit | 2aea1d796ea60b9e49d12257dc2a94bf3dd4ef26 (patch) | |
tree | a783a384cc0f7cfcc8225c407e8255a6c25e5816 /iconvdata/euckr.c | |
parent | 40c0dc53b080fd3e1ace4fbe2cb79007babec6c3 (diff) | |
download | glibc-2aea1d796ea60b9e49d12257dc2a94bf3dd4ef26.tar.gz glibc-2aea1d796ea60b9e49d12257dc2a94bf3dd4ef26.tar.xz 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/euckr.c')
-rw-r--r-- | iconvdata/euckr.c | 45 |
1 files changed, 9 insertions, 36 deletions
diff --git a/iconvdata/euckr.c b/iconvdata/euckr.c index 62dd2c47bf..1dfa42dbcc 100644 --- a/iconvdata/euckr.c +++ b/iconvdata/euckr.c @@ -26,18 +26,8 @@ #include <ksc5601.h> /* Direction of the transformation. */ -enum direction -{ - illegal, - to_euckr, - from_euckr -}; - -struct euckr_data -{ - enum direction dir; -}; - +static int to_euckr_object; +static int from_euckr_object; static inline void @@ -66,36 +56,21 @@ int gconv_init (struct gconv_step *step) { /* Determine which direction. */ - struct euckr_data *new_data; - enum direction dir; - int result; - if (strcasestr (step->from_name, "EUC-KR") != NULL) - dir = from_euckr; + step->data = &from_euckr_object; else if (strcasestr (step->to_name, "EUC-KR") != NULL) - dir = to_euckr; + step->data = &to_euckr_object; else - dir = illegal; + return GCONV_NOCONV; - result = GCONV_NOCONV; - if (dir != illegal - && ((new_data - = (struct euckr_data *) malloc (sizeof (struct euckr_data))) - != NULL)) - { - new_data->dir = dir; - step->data = new_data; - result = GCONV_OK; - } - - return result; + return GCONV_OK; } void gconv_end (struct gconv_step *data) { - free (data->data); + /* Nothing to do. */ } @@ -132,15 +107,13 @@ gconv (struct gconv_step *step, struct gconv_step_data *data, } else { - enum direction dir = ((struct euckr_data *) step->data)->dir; - do_write = 0; do { result = GCONV_OK; - if (dir == from_euckr) + if (step->data == &from_euckr_object) { size_t inchars = *inbufsize; size_t outwchars = data->outbufavail; @@ -281,7 +254,7 @@ gconv (struct gconv_step *step, struct gconv_step_data *data, if (data->is_last) { /* This is the last step. */ - result = (*inbufsize > (dir == from_euckr + result = (*inbufsize > (step->data == &from_euckr_object ? 0 : sizeof (wchar_t) - 1) ? GCONV_FULL_OUTPUT : GCONV_EMPTY_INPUT); break; |