Refactor string functions, add unicode support

Refactored existing functions. Added Unicode support and UTF-8, UTF-16,
and UTF-32 encoding/decoding.
This commit is contained in:
2025-04-05 12:48:29 +03:00
parent f9ebeabb18
commit 6aee5a83aa
11 changed files with 1098 additions and 189 deletions

View File

@@ -8,9 +8,9 @@
/**
* Exchanges values between \a src and \a dest elements of sizze \a size.
*
* \param dest Destination element pointer
* \param src Source element pointer
* \param size Element size in bytes
* \param dest Destination element pointer
* \param src Source element pointer
* \param size Element size in bytes
*/
void BH_Swap(void *dest,
void *src,