>>>>> "Lars" == Lars Gullik Bjønnes <[EMAIL PROTECTED]> writes:
| Maybe by caching the iconv_t returned by iconv_open?
Lars> Is that guaranteed to work?
I think the only thing to do is this:
A conversion descriptor contains a conversion state. After creation
using iconv_open, the state is in the initial state. Using iconv modi-
fies the descriptor's conversion state. (This implies that a conversion
descriptor can not be used in multiple threads simultaneously.) To
bring the state back to the initial state, use iconv with NULL as inbuf
argument.
Lars> Can we try to make things work before the optimize squad goes
Lars> gung-hoo.
Sure.
JMarc