Help for this page

Select Code to Download


  1. or download this
            /* encoding */    
            //// ...
    ...
                ddone += dlen + enc->replen;
                sv_catpvn(dst, (char*)enc->rep, enc->replen);
            }
    
  2. or download this
            /* decoding */
            //// ...
    ...
                ddone += dlen + strlen(FBCHAR_UTF8);
                sv_catpv(dst, FBCHAR_UTF8);
            }
    
  3. or download this
        malformed:
            //// ...
    ...
            } else {
                sv_catpv(dst, FBCHAR_UTF8);
            }