Under Debian::Lenny, icedax systematically replaces accented characters by an underscore
? Is it possible to have such an option to avoid the underscore:
static void filter_nonprintable(char *c, size_t l)
{
size_t i;
for(i = 0; i < l; ++i) {
if(!isprint(c[i]) && !isspace(c[i])) {
// TODO: c[i] = '_';
}
}
}
Best regards