mirror of
https://github.com/zlib-ng/minizip-ng
synced 2025-03-28 21:13:18 +00:00
mz_os.md - update mz_os_utf8_string_create and mz_os_utf8_string_delete documentation
This commit is contained in:
parent
0fa804504c
commit
78b87216bf
12
doc/mz_os.md
12
doc/mz_os.md
@ -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);
|
||||
}
|
||||
```
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user