You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
libowfat/fmt/fmt_escapecharquotedprintab...

11 lines
271 B
C

#include "fmt.h"
size_t fmt_escapecharquotedprintableutf8(char* dest,uint32_t ch) {
char buf[FMT_UTF8];
size_t i,o,j=fmt_utf8(buf,ch);
if (!dest) return j*3;
for (i=o=0; i<j; ++i)
o+=fmt_escapecharquotedprintable(dest+o,(unsigned char)buf[i]);
return o;
}