summaryrefslogtreecommitdiffstats
path: root/unicode/unicodetest.c
AgeCommit message (Collapse)Author
2020-11-24Fix bug triggered by cone.Sam Varshavchik
Parameters to memmove were reversed. len is the size of the buffer. len-pos-cnt characters were copied in error to position pos+cnt. As such this did not overflow. I.e. if len was 8 (eight chars), pos was 1 and cnt was 2, then 8-2-1=5 characters were copied to offset 3, right at the end of the buffer. This was just plain wrong.
2018-07-15courier-unicode: fix error and validation of modified-UTF7 encoding.Sam Varshavchik
2018-07-11courier-unicode: implement unicode_x_smap_modutf8 pseudo-encodingSam Varshavchik
2018-04-27gcc 8 update, fix assertions. libtool and toolchain updates.Sam Varshavchik
2017-09-19Change default encoding character set to UTF-8.Sam Varshavchik
2017-03-06courier-unicode: C++11 update.Sam Varshavchik
* Migrate to C++11: remove unicode_char, use char32_t. Replace std::vector<unicode_char> with std::u32string.
2015-02-28Renamed header file, library name, to avoid clashing with another library.Sam Varshavchik
2014-01-12Refactor unicode library as a standalone packageSam Varshavchik
2013-08-25Initial checkinSam Varshavchik
Imported from subversion report, converted to git. Updated all paths in scripts and makefiles, reflecting the new directory hierarchy.