2002-04-30 18:24:10 +00:00
|
|
|
#include "fmt.h"
|
|
|
|
#include "textcode.h"
|
|
|
|
#include "haveinline.h"
|
2005-03-30 13:22:17 +00:00
|
|
|
#include "str.h"
|
2002-04-30 18:24:10 +00:00
|
|
|
|
2006-11-07 17:56:05 +00:00
|
|
|
size_t fmt_quotedprintable2(char* dest,const char* src,size_t len,const char* escapeme) {
|
2002-04-30 18:24:10 +00:00
|
|
|
register const unsigned char* s=(const unsigned char*) src;
|
2006-11-07 17:56:05 +00:00
|
|
|
size_t written=0,i;
|
2002-04-30 18:24:10 +00:00
|
|
|
for (i=0; i<len; ++i) {
|
2005-03-30 13:22:17 +00:00
|
|
|
if (s[i]&0x80 || s[i]<' ' || s[i]=='=' || escapeme[str_chr(escapeme,s[i])]==s[i]) {
|
2002-04-30 18:24:10 +00:00
|
|
|
if (dest) {
|
|
|
|
dest[written]='=';
|
2003-09-19 19:08:13 +00:00
|
|
|
dest[written+1]=fmt_tohex(s[i]>>4);
|
|
|
|
dest[written+2]=fmt_tohex(s[i]&15);
|
2002-04-30 18:24:10 +00:00
|
|
|
}
|
|
|
|
written+=3;
|
|
|
|
} else {
|
2016-04-27 14:07:49 +00:00
|
|
|
if (dest) dest[written]=s[i];
|
|
|
|
++written;
|
2002-04-30 18:24:10 +00:00
|
|
|
}
|
2007-06-28 21:00:40 +00:00
|
|
|
/* in case someone gives us malicious input */
|
|
|
|
if (written>((size_t)-1)/2) return (size_t)-1;
|
2002-04-30 18:24:10 +00:00
|
|
|
}
|
|
|
|
return written;
|
|
|
|
}
|
2005-03-30 13:22:17 +00:00
|
|
|
|
2006-11-07 17:56:05 +00:00
|
|
|
size_t fmt_quotedprintable(char* dest,const char* src,size_t len) {
|
2005-03-30 13:22:17 +00:00
|
|
|
return fmt_quotedprintable2(dest,src,len,"");
|
|
|
|
}
|