-
Notifications
You must be signed in to change notification settings - Fork 4
npp_convert
Jurek Muszyński edited this page Dec 19, 2021
·
2 revisions
Converts NULL-terminated src from cp_from to cp_to using iconv library. Maximum destination length, including terminating NULL can be 1024 bytes.
Returns pointer to converted, zero-terminated static string.
// convert UTF-8 string to plain ASCII
char plain[1024];
strcpy(plain, npp_convert(string, "UTF-8", "ASCII//TRANSLIT"));
Requires NPP_ICONV compilation switch.