]> mj.ucw.cz Git - libucw.git/blobdiff - charset/mp-charconv.c
Don't forget to increase run counter.
[libucw.git] / charset / mp-charconv.c
index 6615973cb4c23588ae2a6a38cccd90127911fe1f..ef0adf951c83a0b5de0a026763bccb5b1c7f0a06 100644 (file)
@@ -1,5 +1,5 @@
 /*
- *     Sherlock Library -- Character Conversion with Allocation on a Memory Pool 
+ *     Sherlock Library -- Character Conversion with Allocation on a Memory Pool
  *
  *     (c) 2006 Pavel Charvat <pchar@ucw.cz>
  *
@@ -17,12 +17,12 @@ mp_strconv(struct mempool *mp, byte *s, uns in_cs, uns out_cs)
 {
   if (in_cs == out_cs)
     return mp_strdup(mp, s);
+
   struct conv_context c;
   char *b[32];
   uns bs[32], n = 0, sum = 0;
   uns l = strlen(s) + 1;
-  
+
   conv_init(&c);
   conv_set_charset(&c, in_cs, out_cs);
   c.source = s;