How can you change all accented letters to normal letters in C++ (or in C)?
By that, I mean something like eéèêaàäâçc would become
eéèêaàäâçc
I know it only in theory. Basically, you perform Unicode normalization, then some decomposition, purge all diacritics, and recompose again.