diff options
author | Ulrich Drepper <drepper@redhat.com> | 2000-01-19 03:21:41 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2000-01-19 03:21:41 +0000 |
commit | 63e04088bfe942ec4430985fea2ee024f1c38988 (patch) | |
tree | f494fcb0da4cc3271d3b195be08d8290663e3a03 /iconv/gconv_int.h | |
parent | ea6eb383294fbf1def7d05e4785a78e68cbf31ce (diff) | |
download | glibc-63e04088bfe942ec4430985fea2ee024f1c38988.zip glibc-63e04088bfe942ec4430985fea2ee024f1c38988.tar.gz glibc-63e04088bfe942ec4430985fea2ee024f1c38988.tar.bz2 |
Update.
2000-01-18 Ulrich Drepper <drepper@cygnus.com>
* iconv/loop.c (COUNT_CONVERTED): Remove macro, comment, and all uses.
Remove done variable and all uses.
* iconv/skeleton.c: Update comment for *written modification.
* iconv/gconv_int.h (__gconv): Update comment.
Diffstat (limited to 'iconv/gconv_int.h')
-rw-r--r-- | iconv/gconv_int.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/iconv/gconv_int.h b/iconv/gconv_int.h index 794f41f..da9e012 100644 --- a/iconv/gconv_int.h +++ b/iconv/gconv_int.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1997, 1998, 1999 Free Software Foundation, Inc. +/* Copyright (C) 1997, 1998, 1999, 2000 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper <drepper@cygnus.com>, 1997. @@ -111,8 +111,8 @@ extern int __gconv_close (__gconv_t cd) /* Transform at most *INBYTESLEFT bytes from buffer starting at *INBUF according to rules described by CD and place up to *OUTBYTESLEFT - bytes in buffer starting at *OUTBUF. Return number of written - characters in *CONVERTED if this pointer is not null. */ + bytes in buffer starting at *OUTBUF. Return number of non-identical + conversions in *CONVERTED if this pointer is not null. */ extern int __gconv (__gconv_t __cd, const unsigned char **__inbuf, const unsigned char *inbufend, unsigned char **__outbuf, unsigned char *outbufend, size_t *converted) |