mz_os.md - update mz_os_utf8_string_create and mz_os_utf8_string_delete documentation

This commit is contained in:
Thomas Gamper 2023-06-08 10:09:00 +02:00 committed by Nathan Moinvaziri
parent 0fa804504c
commit 78b87216bf

View File

@ -395,15 +395,15 @@ Create a utf8 string from a string with another encoding.
**Return**
|Type|Description|
|-|-|
|uint8_t *|Returns pointer to UTF-8 encoded string if successful, otherwise NULL.|
|char *|Returns pointer to UTF-8 encoded string if successful, otherwise NULL.|
**Example**
```
char *test = "test";
wchar_t *test_utf8 = mz_os_utf8_string_create(test, MZ_ENCODING_CODEPAGE_437);
char *test_utf8 = mz_os_utf8_string_create(test, MZ_ENCODING_CODEPAGE_437);
if (test_utf8) {
printf("UTF-8 test string created\n");
mz_os_utf8_string_create(&test_utf8);
mz_os_utf8_string_delete(&test_utf8);
}
```
@ -414,15 +414,15 @@ Delete a utf8 string that was created with _mz_os_utf8_string_create_.
**Arguments**
|Type|Name|Description|
|-|-|-|
|uint8_t **|string|Pointer to utf8 encoded string|
|char **|string|Pointer to utf8 encoded string|
**Example**
```
char *test = "test";
wchar_t *test_utf8 = mz_os_utf8_string_create(test, MZ_ENCODING_CODEPAGE_437);
char *test_utf8 = mz_os_utf8_string_create(test, MZ_ENCODING_CODEPAGE_437);
if (test_utf8) {
printf("UTF-8 test string created\n");
mz_os_utf8_string_create(&test_utf8);
mz_os_utf8_string_delete(&test_utf8);
}
```