]> mj.ucw.cz Git - libucw.git/blobdiff - charset/stk-charconv.c
Fastbufs: Fixed uninitialized variables in fbmulti's structure.
[libucw.git] / charset / stk-charconv.c
index 7fc2d72cbf0bf9833c9a9f3a34a28e1e3f2574ae..3286f0fe301f64410bcb00413067b23b7afab3df 100644 (file)
@@ -1,5 +1,5 @@
 /*
- *     Sherlock Library -- Character Conversion with Allocation on the Stack 
+ *     Sherlock Library -- Character Conversion with Allocation on the Stack
  *
  *     (c) 2006 Pavel Charvat <pchar@ucw.cz>
  *
@@ -7,15 +7,15 @@
  *     of the GNU Lesser General Public License.
  */
 
-#include "lib/lib.h"
-#include "charset/stk-charconv.h"
+#include <ucw/lib.h>
+#include <charset/stk-charconv.h>
 #include <string.h>
 
 #define INITIAL_MIN_SIZE       16
 #define INITIAL_SCALE          2
 
 uns
-stk_strconv_init(struct conv_context *c, byte *s, uns in_cs, uns out_cs)
+stk_strconv_init(struct conv_context *c, const byte *s, uns in_cs, uns out_cs)
 {
   uns l = strlen(s);
   if (in_cs == out_cs)