X-Git-Url: http://mj.ucw.cz/gitweb/?a=blobdiff_plain;f=charset%2Fstk-charconv.c;h=d5f55fed9e55a599a9e9e8e033ea79c5a8aa06a3;hb=67d52e562eaeef76ee6c5d9f8ca2da573e825506;hp=2dca1c56b7ba525a190f7fc1e60ef3950facbca1;hpb=ee58c363f2df512f649ac2837ee06c3cdbc75a03;p=libucw.git diff --git a/charset/stk-charconv.c b/charset/stk-charconv.c index 2dca1c56..d5f55fed 100644 --- a/charset/stk-charconv.c +++ b/charset/stk-charconv.c @@ -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 * @@ -15,7 +15,7 @@ #define INITIAL_SCALE 2 uns -stk_conv_init(struct conv_context *c, byte *s, uns in_cs, uns out_cs) +stk_strconv_init(struct conv_context *c, byte *s, uns in_cs, uns out_cs) { uns l = strlen(s); if (in_cs == out_cs) @@ -35,7 +35,7 @@ stk_conv_init(struct conv_context *c, byte *s, uns in_cs, uns out_cs) } uns -stk_conv_step(struct conv_context *c, byte *buf, uns len) +stk_strconv_step(struct conv_context *c, byte *buf, uns len) { if (!c->source_end) {