Hi, I've modified src/lib/utf8.c, please modify comment line if it needs.
Regards, -- Daichi
Index: utf8.c =================================================================== RCS file: /cvsroot/gtk-gnutella/gtk-gnutella-current/src/lib/utf8.c,v retrieving revision 1.25 diff -u -r1.25 utf8.c --- utf8.c 27 Mar 2005 05:19:52 -0000 1.25 +++ utf8.c 2 Apr 2005 15:12:15 -0000 @@ -4878,14 +4878,14 @@ /** * Decomposes a UTF-8 encoded string. * - * The UTF-8 string written to ``out'' is always NUL-terminated unless - * ``size'' is zero. If the size of ``out'' is too small to hold the + * The UTF-8 string written to ``dst'' is always NUL-terminated unless + * ``size'' is zero. If the size of ``dst'' is too small to hold the * complete decomposed string, the resulting string will be truncated but * the validity of the UTF-8 encoding will be preserved. Truncation is * indicated by the return value being equal to or greater than ``size''. * - * @param in a UTF-8 encoded string. - * @param out a pointer to a buffer which will hold the decomposed string. + * @param src a UTF-8 encoded string. + * @param dst a pointer to a buffer which will hold the decomposed string. * @param size the number of bytes ``out'' can hold. * * @returns the length in bytes (not characters!) of completely decomposed
