diff options
author | jcid <devnull@localhost> | 2008-08-13 00:01:46 +0200 |
---|---|---|
committer | jcid <devnull@localhost> | 2008-08-13 00:01:46 +0200 |
commit | 5b6c1e4e15be7a2408f043088d1e85658c846c57 (patch) | |
tree | d9d69e0b288fa90a195b9060132af98dfb03ab4d | |
parent | 50b3b7b3e576bfcb8682ce7d4b0eb15086c214b4 (diff) |
- Corrected a misleading comment.
-rw-r--r-- | src/decode.c | 15 |
1 files changed, 11 insertions, 4 deletions
diff --git a/src/decode.c b/src/decode.c index a94156d0..1a912db9 100644 --- a/src/decode.c +++ b/src/decode.c @@ -1,3 +1,13 @@ +/* + * File: decode.c + * + * Copyright 2007-2008 Jorge Arellano Cid <jcid@dillo.org> + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 3 of the License, or + * (at your option) any later version. + */ #include <zlib.h> #include <iconv.h> @@ -282,10 +292,7 @@ Decode *a_Decode_charset_init(const char *format) } /* - * Filter data using our decoder. - * - * The input string should not be used after this call. The decoder will - * free it if necessary. + * Decode data. */ Dstr *a_Decode_process(Decode *dc, const char *instr, int inlen) { |