libowfat/textcode/scan_quotedprintable.c

25 lines
551 B
C
Raw Normal View History

2002-04-30 18:24:10 +00:00
#include "fmt.h"
#include "textcode.h"
#include "scan.h"
2002-04-30 18:24:10 +00:00
unsigned long scan_quotedprintable(const char *src,char *dest,unsigned long *destlen) {
2002-04-30 18:24:10 +00:00
register const unsigned char* s=(const unsigned char*) src;
unsigned long written=0,i;
for (i=0; s[i]; ++i) {
if (s[i]=='=') {
int j=scan_fromhex(s[i+1]);
2002-04-30 18:24:10 +00:00
if (j<0) break;
dest[written]=j<<4;
j=scan_fromhex(s[i+2]);
2002-04-30 18:24:10 +00:00
if (j<0) break;
dest[written]|=j;
i+=2;
} else {
dest[written]=s[i];
}
++written;
}
*destlen=written;
return i;
}