![leitner](/assets/img/avatar_default.png)
add some single char escaping routines to fmt.h pull in html5 entities from w3c and use those to do a proper scan_html decoding fix an off-by-one in fmt_to_array add a ton of unit tests for the fmt routines
11 lines
271 B
C
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;
|
|
}
|