From: ben Date: Tue, 31 Dec 2002 21:12:29 +0000 (+0000) Subject: Add internal prototypes to keep my compiler from complaining. X-Git-Url: https://git.distorted.org.uk/u/mdw/putty/commitdiff_plain/72ecd48aa05023a3a2ed66cb462e7304acf0a119 Add internal prototypes to keep my compiler from complaining. git-svn-id: svn://svn.tartarus.org/sgt/putty@2398 cda61777-01e9-0310-a592-d414129be87e --- diff --git a/charset/utf8.c b/charset/utf8.c index c82a2159..3c777292 100644 --- a/charset/utf8.c +++ b/charset/utf8.c @@ -7,6 +7,11 @@ #include "charset.h" #include "internal.h" +void read_utf8(charset_spec const *, long int, charset_state *, + void (*)(void *, long int), void *); +void write_utf8(charset_spec const *, long int, + charset_state *, void (*)(void *, long int), void *); + /* * UTF-8 has no associated data, so `charset' may be ignored. */