2018-12-20 17:33:31 +08:00
|
|
|
|
## wstr\_t
|
|
|
|
|
### 概述
|
2019-12-14 13:25:56 +08:00
|
|
|
|
可变长度的宽字符字符串。
|
|
|
|
|
|
|
|
|
|
示例:
|
|
|
|
|
|
|
|
|
|
```c
|
|
|
|
|
wstr_t s;
|
|
|
|
|
wstr_init(&s, 0);
|
|
|
|
|
|
|
|
|
|
wstr_append(&s, L"abc");
|
|
|
|
|
wstr_append(&s, L"123");
|
|
|
|
|
|
|
|
|
|
wstr_reset(&s);
|
|
|
|
|
```
|
|
|
|
|
> 先调wstr\_init进行初始化,最后调用wstr\_reset释放内存。
|
2019-01-15 14:34:05 +08:00
|
|
|
|
----------------------------------
|
2018-12-20 17:33:31 +08:00
|
|
|
|
### 函数
|
|
|
|
|
<p id="wstr_t_methods">
|
|
|
|
|
|
|
|
|
|
| 函数名称 | 说明 |
|
|
|
|
|
| -------- | ------------ |
|
2018-12-21 12:11:40 +08:00
|
|
|
|
| <a href="#wstr_t_wstr_add_float">wstr\_add\_float</a> | 将字符串转成浮点数,加上delta,再转换回来。 |
|
2018-12-27 14:02:45 +08:00
|
|
|
|
| <a href="#wstr_t_wstr_append">wstr\_append</a> | 追加字符串。 |
|
2023-06-29 10:44:29 +08:00
|
|
|
|
| <a href="#wstr_t_wstr_append_int">wstr\_append\_int</a> | 追加整数到字符串。 |
|
2023-09-24 10:43:01 +08:00
|
|
|
|
| <a href="#wstr_t_wstr_append_more">wstr\_append\_more</a> | 追加多个字符串。以NULL结束。 |
|
2018-12-27 14:02:45 +08:00
|
|
|
|
| <a href="#wstr_t_wstr_append_with_len">wstr\_append\_with\_len</a> | 追加字符串。 |
|
2023-06-29 10:44:29 +08:00
|
|
|
|
| <a href="#wstr_t_wstr_attach">wstr\_attach</a> | 通过附加到一个buff来初始化str。 |
|
2019-02-20 15:25:09 +08:00
|
|
|
|
| <a href="#wstr_t_wstr_clear">wstr\_clear</a> | 清除字符串内容。 |
|
2020-09-16 09:58:28 +08:00
|
|
|
|
| <a href="#wstr_t_wstr_count_char">wstr\_count\_char</a> | 统计指定字符的个数。 |
|
2023-09-24 10:43:01 +08:00
|
|
|
|
| <a href="#wstr_t_wstr_create">wstr\_create</a> | 创建str对象。 |
|
|
|
|
|
| <a href="#wstr_t_wstr_destroy">wstr\_destroy</a> | 销毁str对象。 |
|
|
|
|
|
| <a href="#wstr_t_wstr_eq">wstr\_eq</a> | 判断两个字符串是否相等。 |
|
2018-12-21 12:11:40 +08:00
|
|
|
|
| <a href="#wstr_t_wstr_equal">wstr\_equal</a> | 判断两个字符是否相同。 |
|
2023-12-26 19:09:36 +08:00
|
|
|
|
| <a href="#wstr_t_wstr_extend">wstr\_extend</a> | 扩展字符串到指定的容量。 |
|
2018-12-21 12:11:40 +08:00
|
|
|
|
| <a href="#wstr_t_wstr_from_float">wstr\_from\_float</a> | 用浮点数初始化字符串。 |
|
|
|
|
|
| <a href="#wstr_t_wstr_from_int">wstr\_from\_int</a> | 用整数初始化字符串。 |
|
2023-06-29 10:44:29 +08:00
|
|
|
|
| <a href="#wstr_t_wstr_from_int64">wstr\_from\_int64</a> | 用整数初始化字符串。 |
|
2018-12-21 12:11:40 +08:00
|
|
|
|
| <a href="#wstr_t_wstr_from_value">wstr\_from\_value</a> | 用value初始化字符串。 |
|
|
|
|
|
| <a href="#wstr_t_wstr_get_utf8">wstr\_get\_utf8</a> | 获取UTF8字符串。 |
|
|
|
|
|
| <a href="#wstr_t_wstr_init">wstr\_init</a> | 初始化字符串对象。 |
|
|
|
|
|
| <a href="#wstr_t_wstr_insert">wstr\_insert</a> | 在指定位置插入字符串。 |
|
2019-07-04 10:05:59 +08:00
|
|
|
|
| <a href="#wstr_t_wstr_normalize_newline">wstr\_normalize\_newline</a> | 规范化换行符。 |
|
2018-12-21 12:11:40 +08:00
|
|
|
|
| <a href="#wstr_t_wstr_pop">wstr\_pop</a> | 删除尾部字符。 |
|
|
|
|
|
| <a href="#wstr_t_wstr_push">wstr\_push</a> | 追加一个字符。 |
|
|
|
|
|
| <a href="#wstr_t_wstr_push_int">wstr\_push\_int</a> | 追加一个整数。 |
|
|
|
|
|
| <a href="#wstr_t_wstr_remove">wstr\_remove</a> | 删除指定范围的字符。 |
|
|
|
|
|
| <a href="#wstr_t_wstr_reset">wstr\_reset</a> | 重置字符串为空。 |
|
|
|
|
|
| <a href="#wstr_t_wstr_set">wstr\_set</a> | 设置字符串。 |
|
|
|
|
|
| <a href="#wstr_t_wstr_set_utf8">wstr\_set\_utf8</a> | 设置UTF8字符串。 |
|
2021-05-11 15:53:22 +08:00
|
|
|
|
| <a href="#wstr_t_wstr_set_utf8_with_len">wstr\_set\_utf8\_with\_len</a> | 设置UTF8字符串。 |
|
2021-10-13 09:51:38 +08:00
|
|
|
|
| <a href="#wstr_t_wstr_set_with_len">wstr\_set\_with\_len</a> | 设置字符串。 |
|
2018-12-21 12:11:40 +08:00
|
|
|
|
| <a href="#wstr_t_wstr_to_float">wstr\_to\_float</a> | 将字符串转成浮点数。 |
|
|
|
|
|
| <a href="#wstr_t_wstr_to_int">wstr\_to\_int</a> | 将字符串转成整数。 |
|
2023-06-29 10:44:29 +08:00
|
|
|
|
| <a href="#wstr_t_wstr_to_int64">wstr\_to\_int64</a> | 将字符串转成整数。 |
|
2018-12-21 12:11:40 +08:00
|
|
|
|
| <a href="#wstr_t_wstr_trim_float_zero">wstr\_trim\_float\_zero</a> | 去掉浮点数小数点尾部的零。 |
|
2018-12-20 17:33:31 +08:00
|
|
|
|
### 属性
|
|
|
|
|
<p id="wstr_t_properties">
|
|
|
|
|
|
2019-01-17 15:56:15 +08:00
|
|
|
|
| 属性名称 | 类型 | 说明 |
|
2018-12-20 17:33:31 +08:00
|
|
|
|
| -------- | ----- | ------------ |
|
2018-12-21 18:29:29 +08:00
|
|
|
|
| <a href="#wstr_t_capacity">capacity</a> | uint32\_t | 容量。 |
|
|
|
|
|
| <a href="#wstr_t_size">size</a> | uint32\_t | 长度。 |
|
|
|
|
|
| <a href="#wstr_t_str">str</a> | wchar\_t* | 字符串。 |
|
2018-12-20 17:33:31 +08:00
|
|
|
|
#### wstr\_add\_float 函数
|
2018-12-21 18:29:29 +08:00
|
|
|
|
-----------------------
|
|
|
|
|
|
|
|
|
|
* 函数功能:
|
|
|
|
|
|
2019-11-15 11:33:43 +08:00
|
|
|
|
> <p id="wstr_t_wstr_add_float">将字符串转成浮点数,加上delta,再转换回来。
|
2019-10-16 09:02:32 +08:00
|
|
|
|
|
2018-12-21 11:39:05 +08:00
|
|
|
|
* 函数原型:
|
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
ret_t wstr_add_float (wstr_t* str, double delta);
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
* 参数说明:
|
|
|
|
|
|
2018-12-20 17:33:31 +08:00
|
|
|
|
| 参数 | 类型 | 说明 |
|
|
|
|
|
| -------- | ----- | --------- |
|
|
|
|
|
| 返回值 | ret\_t | 返回RET\_OK表示成功,否则表示失败。 |
|
|
|
|
|
| str | wstr\_t* | str对象。 |
|
|
|
|
|
| delta | double | 要加上的值。 |
|
2018-12-27 14:02:45 +08:00
|
|
|
|
#### wstr\_append 函数
|
|
|
|
|
-----------------------
|
|
|
|
|
|
|
|
|
|
* 函数功能:
|
|
|
|
|
|
2019-11-15 11:33:43 +08:00
|
|
|
|
> <p id="wstr_t_wstr_append">追加字符串。
|
2019-10-16 09:02:32 +08:00
|
|
|
|
|
2018-12-27 14:02:45 +08:00
|
|
|
|
* 函数原型:
|
|
|
|
|
|
|
|
|
|
```
|
2023-06-29 10:44:29 +08:00
|
|
|
|
ret_t wstr_append (wstr_t* str, const wchar_t* text);
|
2018-12-27 14:02:45 +08:00
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
* 参数说明:
|
|
|
|
|
|
|
|
|
|
| 参数 | 类型 | 说明 |
|
|
|
|
|
| -------- | ----- | --------- |
|
|
|
|
|
| 返回值 | ret\_t | 返回RET\_OK表示成功,否则表示失败。 |
|
|
|
|
|
| str | wstr\_t* | str对象。 |
|
2023-06-29 10:44:29 +08:00
|
|
|
|
| text | const wchar\_t* | 要追加的字符串。 |
|
|
|
|
|
#### wstr\_append\_int 函数
|
|
|
|
|
-----------------------
|
|
|
|
|
|
|
|
|
|
* 函数功能:
|
|
|
|
|
|
|
|
|
|
> <p id="wstr_t_wstr_append_int">追加整数到字符串。
|
|
|
|
|
|
|
|
|
|
* 函数原型:
|
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
ret_t wstr_append_int (wstr_t* str, int32_t v);
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
* 参数说明:
|
|
|
|
|
|
|
|
|
|
| 参数 | 类型 | 说明 |
|
|
|
|
|
| -------- | ----- | --------- |
|
|
|
|
|
| 返回值 | ret\_t | 返回RET\_OK表示成功,否则表示失败。 |
|
|
|
|
|
| str | wstr\_t* | str对象。 |
|
|
|
|
|
| v | int32\_t | 整数。 |
|
2023-09-24 10:43:01 +08:00
|
|
|
|
#### wstr\_append\_more 函数
|
|
|
|
|
-----------------------
|
|
|
|
|
|
|
|
|
|
* 函数功能:
|
|
|
|
|
|
|
|
|
|
> <p id="wstr_t_wstr_append_more">追加多个字符串。以NULL结束。
|
|
|
|
|
|
|
|
|
|
示例:
|
|
|
|
|
|
|
|
|
|
```c
|
|
|
|
|
wstr_t s;
|
|
|
|
|
wstr_init(&s, 0);
|
|
|
|
|
|
|
|
|
|
wstr_append_more(&s, L"abc", L"123", NULL);
|
|
|
|
|
log_debug("%s\n", s.str);
|
|
|
|
|
|
|
|
|
|
wstr_reset(&s);
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
* 函数原型:
|
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
ret_t wstr_append_more (wstr_t* str, const wchar_t* text);
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
* 参数说明:
|
|
|
|
|
|
|
|
|
|
| 参数 | 类型 | 说明 |
|
|
|
|
|
| -------- | ----- | --------- |
|
|
|
|
|
| 返回值 | ret\_t | 返回RET\_OK表示成功,否则表示失败。 |
|
|
|
|
|
| str | wstr\_t* | str对象。 |
|
|
|
|
|
| text | const wchar\_t* | 要追加的字符串。 |
|
2018-12-27 14:02:45 +08:00
|
|
|
|
#### wstr\_append\_with\_len 函数
|
|
|
|
|
-----------------------
|
|
|
|
|
|
|
|
|
|
* 函数功能:
|
|
|
|
|
|
2019-11-15 11:33:43 +08:00
|
|
|
|
> <p id="wstr_t_wstr_append_with_len">追加字符串。
|
2019-10-16 09:02:32 +08:00
|
|
|
|
|
2018-12-27 14:02:45 +08:00
|
|
|
|
* 函数原型:
|
|
|
|
|
|
|
|
|
|
```
|
2023-06-29 10:44:29 +08:00
|
|
|
|
ret_t wstr_append_with_len (wstr_t* str, const wchar_t* text, uint32_t len);
|
2018-12-27 14:02:45 +08:00
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
* 参数说明:
|
|
|
|
|
|
|
|
|
|
| 参数 | 类型 | 说明 |
|
|
|
|
|
| -------- | ----- | --------- |
|
|
|
|
|
| 返回值 | ret\_t | 返回RET\_OK表示成功,否则表示失败。 |
|
|
|
|
|
| str | wstr\_t* | str对象。 |
|
2023-06-29 10:44:29 +08:00
|
|
|
|
| text | const wchar\_t* | 要追加的字符串。 |
|
2018-12-27 14:02:45 +08:00
|
|
|
|
| len | uint32\_t | 字符串长度。 |
|
2023-06-29 10:44:29 +08:00
|
|
|
|
#### wstr\_attach 函数
|
|
|
|
|
-----------------------
|
|
|
|
|
|
|
|
|
|
* 函数功能:
|
|
|
|
|
|
|
|
|
|
> <p id="wstr_t_wstr_attach">通过附加到一个buff来初始化str。
|
|
|
|
|
>可以避免str动态分配内存,同时也不会自动扩展内存,使用完成后无需调用str_reset。
|
|
|
|
|
|
|
|
|
|
```c
|
|
|
|
|
wstr_t s;
|
|
|
|
|
wchar_t buff[32];
|
|
|
|
|
wstr_attach(&s, buff, ARRAY_SIZE(buff));
|
|
|
|
|
wstr_set(&s, L"abc");
|
|
|
|
|
wstr_append(&s, L"123");
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
* 函数原型:
|
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
wstr_t* wstr_attach (wstr_t* str, wchar_t* buff, uint32_t capacity);
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
* 参数说明:
|
|
|
|
|
|
|
|
|
|
| 参数 | 类型 | 说明 |
|
|
|
|
|
| -------- | ----- | --------- |
|
|
|
|
|
| 返回值 | wstr\_t* | str对象本身。 |
|
|
|
|
|
| str | wstr\_t* | str对象。 |
|
|
|
|
|
| buff | wchar\_t* | 缓冲区。 |
|
|
|
|
|
| capacity | uint32\_t | 初始容量。 |
|
2019-02-20 15:25:09 +08:00
|
|
|
|
#### wstr\_clear 函数
|
|
|
|
|
-----------------------
|
|
|
|
|
|
|
|
|
|
* 函数功能:
|
|
|
|
|
|
2019-11-15 11:33:43 +08:00
|
|
|
|
> <p id="wstr_t_wstr_clear">清除字符串内容。
|
2019-10-16 09:02:32 +08:00
|
|
|
|
|
2019-02-20 15:25:09 +08:00
|
|
|
|
* 函数原型:
|
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
ret_t wstr_clear (wstr_t* str);
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
* 参数说明:
|
|
|
|
|
|
|
|
|
|
| 参数 | 类型 | 说明 |
|
|
|
|
|
| -------- | ----- | --------- |
|
|
|
|
|
| 返回值 | ret\_t | 返回RET\_OK表示成功,否则表示失败。 |
|
|
|
|
|
| str | wstr\_t* | str对象。 |
|
2020-09-16 09:58:28 +08:00
|
|
|
|
#### wstr\_count\_char 函数
|
|
|
|
|
-----------------------
|
|
|
|
|
|
|
|
|
|
* 函数功能:
|
|
|
|
|
|
|
|
|
|
> <p id="wstr_t_wstr_count_char">统计指定字符的个数。
|
|
|
|
|
|
|
|
|
|
* 函数原型:
|
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
uint32_t wstr_count_char (wstr_t* str, wchar_t c);
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
* 参数说明:
|
|
|
|
|
|
|
|
|
|
| 参数 | 类型 | 说明 |
|
|
|
|
|
| -------- | ----- | --------- |
|
|
|
|
|
| 返回值 | uint32\_t | 返回指定字符的个数。 |
|
|
|
|
|
| str | wstr\_t* | str对象。 |
|
|
|
|
|
| c | wchar\_t | 字符。 |
|
2023-09-24 10:43:01 +08:00
|
|
|
|
#### wstr\_create 函数
|
|
|
|
|
-----------------------
|
|
|
|
|
|
|
|
|
|
* 函数功能:
|
|
|
|
|
|
|
|
|
|
> <p id="wstr_t_wstr_create">创建str对象。
|
|
|
|
|
备注:最后调用wstr\_destroy释放内存
|
|
|
|
|
|
|
|
|
|
* 函数原型:
|
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
wstr_t* wstr_create (uint32_t capacity);
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
* 参数说明:
|
|
|
|
|
|
|
|
|
|
| 参数 | 类型 | 说明 |
|
|
|
|
|
| -------- | ----- | --------- |
|
|
|
|
|
| 返回值 | wstr\_t* | str对象。 |
|
|
|
|
|
| capacity | uint32\_t | 初始容量。 |
|
|
|
|
|
#### wstr\_destroy 函数
|
|
|
|
|
-----------------------
|
|
|
|
|
|
|
|
|
|
* 函数功能:
|
|
|
|
|
|
|
|
|
|
> <p id="wstr_t_wstr_destroy">销毁str对象。
|
|
|
|
|
|
|
|
|
|
* 函数原型:
|
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
ret_t wstr_destroy (wstr_t* str);
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
* 参数说明:
|
|
|
|
|
|
|
|
|
|
| 参数 | 类型 | 说明 |
|
|
|
|
|
| -------- | ----- | --------- |
|
|
|
|
|
| 返回值 | ret\_t | 返回RET\_OK表示成功,否则表示失败。 |
|
|
|
|
|
| str | wstr\_t* | str对象。 |
|
|
|
|
|
#### wstr\_eq 函数
|
|
|
|
|
-----------------------
|
|
|
|
|
|
|
|
|
|
* 函数功能:
|
|
|
|
|
|
|
|
|
|
> <p id="wstr_t_wstr_eq">判断两个字符串是否相等。
|
|
|
|
|
|
|
|
|
|
* 函数原型:
|
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
bool_t wstr_eq (wstr_t* str, const wchar_t* text);
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
* 参数说明:
|
|
|
|
|
|
|
|
|
|
| 参数 | 类型 | 说明 |
|
|
|
|
|
| -------- | ----- | --------- |
|
|
|
|
|
| 返回值 | bool\_t | 返回是否相等。 |
|
|
|
|
|
| str | wstr\_t* | str对象。 |
|
|
|
|
|
| text | const wchar\_t* | 待比较的字符串。 |
|
2018-12-21 18:29:29 +08:00
|
|
|
|
#### wstr\_equal 函数
|
|
|
|
|
-----------------------
|
|
|
|
|
|
2018-12-21 11:39:05 +08:00
|
|
|
|
* 函数功能:
|
|
|
|
|
|
2019-11-15 11:33:43 +08:00
|
|
|
|
> <p id="wstr_t_wstr_equal">判断两个字符是否相同。
|
2019-10-16 09:02:32 +08:00
|
|
|
|
|
2018-12-21 11:39:05 +08:00
|
|
|
|
* 函数原型:
|
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
bool_t wstr_equal (wstr_t* str, wstr_t* other);
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
* 参数说明:
|
|
|
|
|
|
2018-12-20 17:33:31 +08:00
|
|
|
|
| 参数 | 类型 | 说明 |
|
|
|
|
|
| -------- | ----- | --------- |
|
|
|
|
|
| 返回值 | bool\_t | 返回TRUE表示相同,否则表示不同。 |
|
|
|
|
|
| str | wstr\_t* | str对象。 |
|
|
|
|
|
| other | wstr\_t* | str对象。 |
|
2023-12-26 19:09:36 +08:00
|
|
|
|
#### wstr\_extend 函数
|
|
|
|
|
-----------------------
|
|
|
|
|
|
|
|
|
|
* 函数功能:
|
|
|
|
|
|
|
|
|
|
> <p id="wstr_t_wstr_extend">扩展字符串到指定的容量。
|
|
|
|
|
|
|
|
|
|
* 函数原型:
|
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
ret_t wstr_extend (wstr_t* str, uint32_t capacity);
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
* 参数说明:
|
|
|
|
|
|
|
|
|
|
| 参数 | 类型 | 说明 |
|
|
|
|
|
| -------- | ----- | --------- |
|
|
|
|
|
| 返回值 | ret\_t | 返回RET\_OK表示成功,否则表示失败。 |
|
|
|
|
|
| str | wstr\_t* | wstr对象。 |
|
|
|
|
|
| capacity | uint32\_t | 初始容量。 |
|
2018-12-21 18:29:29 +08:00
|
|
|
|
#### wstr\_from\_float 函数
|
|
|
|
|
-----------------------
|
|
|
|
|
|
2018-12-21 11:39:05 +08:00
|
|
|
|
* 函数功能:
|
|
|
|
|
|
2019-11-15 11:33:43 +08:00
|
|
|
|
> <p id="wstr_t_wstr_from_float">用浮点数初始化字符串。
|
2019-10-16 09:02:32 +08:00
|
|
|
|
|
2018-12-21 11:39:05 +08:00
|
|
|
|
* 函数原型:
|
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
ret_t wstr_from_float (wstr_t* str, double v);
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
* 参数说明:
|
|
|
|
|
|
2018-12-20 17:33:31 +08:00
|
|
|
|
| 参数 | 类型 | 说明 |
|
|
|
|
|
| -------- | ----- | --------- |
|
|
|
|
|
| 返回值 | ret\_t | 返回RET\_OK表示成功,否则表示失败。 |
|
|
|
|
|
| str | wstr\_t* | str对象。 |
|
|
|
|
|
| v | double | 浮点数。 |
|
2018-12-21 18:29:29 +08:00
|
|
|
|
#### wstr\_from\_int 函数
|
|
|
|
|
-----------------------
|
|
|
|
|
|
2018-12-21 11:39:05 +08:00
|
|
|
|
* 函数功能:
|
|
|
|
|
|
2019-11-15 11:33:43 +08:00
|
|
|
|
> <p id="wstr_t_wstr_from_int">用整数初始化字符串。
|
2019-10-16 09:02:32 +08:00
|
|
|
|
|
2018-12-21 11:39:05 +08:00
|
|
|
|
* 函数原型:
|
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
ret_t wstr_from_int (wstr_t* str, int32_t v);
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
* 参数说明:
|
|
|
|
|
|
2018-12-20 17:33:31 +08:00
|
|
|
|
| 参数 | 类型 | 说明 |
|
|
|
|
|
| -------- | ----- | --------- |
|
|
|
|
|
| 返回值 | ret\_t | 返回RET\_OK表示成功,否则表示失败。 |
|
|
|
|
|
| str | wstr\_t* | str对象。 |
|
|
|
|
|
| v | int32\_t | 整数。 |
|
2023-06-29 10:44:29 +08:00
|
|
|
|
#### wstr\_from\_int64 函数
|
|
|
|
|
-----------------------
|
|
|
|
|
|
|
|
|
|
* 函数功能:
|
|
|
|
|
|
|
|
|
|
> <p id="wstr_t_wstr_from_int64">用整数初始化字符串。
|
|
|
|
|
|
|
|
|
|
* 函数原型:
|
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
ret_t wstr_from_int64 (wstr_t* str, int64_t v);
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
* 参数说明:
|
|
|
|
|
|
|
|
|
|
| 参数 | 类型 | 说明 |
|
|
|
|
|
| -------- | ----- | --------- |
|
|
|
|
|
| 返回值 | ret\_t | 返回RET\_OK表示成功,否则表示失败。 |
|
|
|
|
|
| str | wstr\_t* | str对象。 |
|
|
|
|
|
| v | int64\_t | 整数。 |
|
2018-12-21 18:29:29 +08:00
|
|
|
|
#### wstr\_from\_value 函数
|
|
|
|
|
-----------------------
|
|
|
|
|
|
2018-12-21 11:39:05 +08:00
|
|
|
|
* 函数功能:
|
|
|
|
|
|
2019-11-15 11:33:43 +08:00
|
|
|
|
> <p id="wstr_t_wstr_from_value">用value初始化字符串。
|
2019-10-16 09:02:32 +08:00
|
|
|
|
|
2018-12-21 11:39:05 +08:00
|
|
|
|
* 函数原型:
|
|
|
|
|
|
|
|
|
|
```
|
2023-06-29 10:44:29 +08:00
|
|
|
|
ret_t wstr_from_value (wstr_t* str, const value_t* v);
|
2018-12-21 11:39:05 +08:00
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
* 参数说明:
|
|
|
|
|
|
2018-12-20 17:33:31 +08:00
|
|
|
|
| 参数 | 类型 | 说明 |
|
|
|
|
|
| -------- | ----- | --------- |
|
|
|
|
|
| 返回值 | ret\_t | 返回RET\_OK表示成功,否则表示失败。 |
|
|
|
|
|
| str | wstr\_t* | str对象。 |
|
2023-06-29 10:44:29 +08:00
|
|
|
|
| v | const value\_t* | value。 |
|
2018-12-21 18:29:29 +08:00
|
|
|
|
#### wstr\_get\_utf8 函数
|
|
|
|
|
-----------------------
|
|
|
|
|
|
2018-12-21 11:39:05 +08:00
|
|
|
|
* 函数功能:
|
|
|
|
|
|
2019-11-15 11:33:43 +08:00
|
|
|
|
> <p id="wstr_t_wstr_get_utf8">获取UTF8字符串。
|
2019-10-16 09:02:32 +08:00
|
|
|
|
|
2018-12-21 11:39:05 +08:00
|
|
|
|
* 函数原型:
|
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
ret_t wstr_get_utf8 (wstr_t* str, char* text, uint32_t size);
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
* 参数说明:
|
|
|
|
|
|
2018-12-20 17:33:31 +08:00
|
|
|
|
| 参数 | 类型 | 说明 |
|
|
|
|
|
| -------- | ----- | --------- |
|
|
|
|
|
| 返回值 | ret\_t | 返回RET\_OK表示成功,否则表示失败。 |
|
|
|
|
|
| str | wstr\_t* | str对象。 |
|
|
|
|
|
| text | char* | 返回的字符串。 |
|
|
|
|
|
| size | uint32\_t | text最大长度。 |
|
2018-12-21 18:29:29 +08:00
|
|
|
|
#### wstr\_init 函数
|
|
|
|
|
-----------------------
|
|
|
|
|
|
2018-12-21 11:39:05 +08:00
|
|
|
|
* 函数功能:
|
|
|
|
|
|
2019-11-15 11:33:43 +08:00
|
|
|
|
> <p id="wstr_t_wstr_init">初始化字符串对象。
|
2023-09-24 10:43:01 +08:00
|
|
|
|
备注:最后调用wstr\_reset释放内存
|
2019-10-16 09:02:32 +08:00
|
|
|
|
|
2018-12-21 11:39:05 +08:00
|
|
|
|
* 函数原型:
|
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
wstr_t* wstr_init (wstr_t* str, uint32_t capacity);
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
* 参数说明:
|
|
|
|
|
|
2018-12-20 17:33:31 +08:00
|
|
|
|
| 参数 | 类型 | 说明 |
|
|
|
|
|
| -------- | ----- | --------- |
|
|
|
|
|
| 返回值 | wstr\_t* | str对象本身。 |
|
|
|
|
|
| str | wstr\_t* | str对象。 |
|
|
|
|
|
| capacity | uint32\_t | 初始容量。 |
|
2018-12-21 18:29:29 +08:00
|
|
|
|
#### wstr\_insert 函数
|
|
|
|
|
-----------------------
|
|
|
|
|
|
2018-12-21 11:39:05 +08:00
|
|
|
|
* 函数功能:
|
|
|
|
|
|
2019-11-15 11:33:43 +08:00
|
|
|
|
> <p id="wstr_t_wstr_insert">在指定位置插入字符串。
|
2019-10-16 09:02:32 +08:00
|
|
|
|
|
2018-12-21 11:39:05 +08:00
|
|
|
|
* 函数原型:
|
|
|
|
|
|
|
|
|
|
```
|
2023-06-29 10:44:29 +08:00
|
|
|
|
ret_t wstr_insert (wstr_t* str, uint32_t offset, const wchar_t* text, uint32_t nr);
|
2018-12-21 11:39:05 +08:00
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
* 参数说明:
|
|
|
|
|
|
2018-12-20 17:33:31 +08:00
|
|
|
|
| 参数 | 类型 | 说明 |
|
|
|
|
|
| -------- | ----- | --------- |
|
|
|
|
|
| 返回值 | ret\_t | 返回RET\_OK表示成功,否则表示失败。 |
|
|
|
|
|
| str | wstr\_t* | str对象。 |
|
|
|
|
|
| offset | uint32\_t | 指定的位置。 |
|
2023-06-29 10:44:29 +08:00
|
|
|
|
| text | const wchar\_t* | 待插入的文本。 |
|
2018-12-20 17:33:31 +08:00
|
|
|
|
| nr | uint32\_t | 要插入的字符数。 |
|
2019-07-04 10:05:59 +08:00
|
|
|
|
#### wstr\_normalize\_newline 函数
|
|
|
|
|
-----------------------
|
|
|
|
|
|
|
|
|
|
* 函数功能:
|
|
|
|
|
|
2019-11-15 11:33:43 +08:00
|
|
|
|
> <p id="wstr_t_wstr_normalize_newline">规范化换行符。
|
2019-10-16 09:02:32 +08:00
|
|
|
|
|
2019-07-04 10:05:59 +08:00
|
|
|
|
* 函数原型:
|
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
ret_t wstr_normalize_newline (wstr_t* str, wchar_t newline);
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
* 参数说明:
|
|
|
|
|
|
|
|
|
|
| 参数 | 类型 | 说明 |
|
|
|
|
|
| -------- | ----- | --------- |
|
|
|
|
|
| 返回值 | ret\_t | 返回RET\_OK表示成功,否则表示失败。 |
|
|
|
|
|
| str | wstr\_t* | str对象。 |
|
|
|
|
|
| newline | wchar\_t | 换行符。 |
|
2018-12-21 18:29:29 +08:00
|
|
|
|
#### wstr\_pop 函数
|
|
|
|
|
-----------------------
|
|
|
|
|
|
2018-12-21 11:39:05 +08:00
|
|
|
|
* 函数功能:
|
|
|
|
|
|
2019-11-15 11:33:43 +08:00
|
|
|
|
> <p id="wstr_t_wstr_pop">删除尾部字符。
|
2019-10-16 09:02:32 +08:00
|
|
|
|
|
2018-12-21 11:39:05 +08:00
|
|
|
|
* 函数原型:
|
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
ret_t wstr_pop (wstr_t* str);
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
* 参数说明:
|
|
|
|
|
|
2018-12-20 17:33:31 +08:00
|
|
|
|
| 参数 | 类型 | 说明 |
|
|
|
|
|
| -------- | ----- | --------- |
|
|
|
|
|
| 返回值 | ret\_t | 返回RET\_OK表示成功,否则表示失败。 |
|
|
|
|
|
| str | wstr\_t* | str对象。 |
|
2018-12-21 18:29:29 +08:00
|
|
|
|
#### wstr\_push 函数
|
|
|
|
|
-----------------------
|
|
|
|
|
|
2018-12-21 11:39:05 +08:00
|
|
|
|
* 函数功能:
|
|
|
|
|
|
2019-11-15 11:33:43 +08:00
|
|
|
|
> <p id="wstr_t_wstr_push">追加一个字符。
|
2019-10-16 09:02:32 +08:00
|
|
|
|
|
2018-12-21 11:39:05 +08:00
|
|
|
|
* 函数原型:
|
|
|
|
|
|
|
|
|
|
```
|
2023-06-29 10:44:29 +08:00
|
|
|
|
ret_t wstr_push (wstr_t* str, const wchar_t c);
|
2018-12-21 11:39:05 +08:00
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
* 参数说明:
|
|
|
|
|
|
2018-12-20 17:33:31 +08:00
|
|
|
|
| 参数 | 类型 | 说明 |
|
|
|
|
|
| -------- | ----- | --------- |
|
|
|
|
|
| 返回值 | ret\_t | 返回RET\_OK表示成功,否则表示失败。 |
|
|
|
|
|
| str | wstr\_t* | str对象。 |
|
2023-06-29 10:44:29 +08:00
|
|
|
|
| c | const wchar\_t | 字符。 |
|
2018-12-21 18:29:29 +08:00
|
|
|
|
#### wstr\_push\_int 函数
|
|
|
|
|
-----------------------
|
|
|
|
|
|
2018-12-21 11:39:05 +08:00
|
|
|
|
* 函数功能:
|
|
|
|
|
|
2019-11-15 11:33:43 +08:00
|
|
|
|
> <p id="wstr_t_wstr_push_int">追加一个整数。
|
2019-10-16 09:02:32 +08:00
|
|
|
|
|
2018-12-21 11:39:05 +08:00
|
|
|
|
* 函数原型:
|
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
ret_t wstr_push_int (wstr_t* str, const char* format, int32_t value);
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
* 参数说明:
|
|
|
|
|
|
2018-12-20 17:33:31 +08:00
|
|
|
|
| 参数 | 类型 | 说明 |
|
|
|
|
|
| -------- | ----- | --------- |
|
|
|
|
|
| 返回值 | ret\_t | 返回RET\_OK表示成功,否则表示失败。 |
|
|
|
|
|
| str | wstr\_t* | str对象。 |
|
|
|
|
|
| format | const char* | 格式(用于snprintf格式化数值) |
|
|
|
|
|
| value | int32\_t | 数值。 |
|
2018-12-21 18:29:29 +08:00
|
|
|
|
#### wstr\_remove 函数
|
|
|
|
|
-----------------------
|
|
|
|
|
|
2018-12-21 11:39:05 +08:00
|
|
|
|
* 函数功能:
|
|
|
|
|
|
2019-11-15 11:33:43 +08:00
|
|
|
|
> <p id="wstr_t_wstr_remove">删除指定范围的字符。
|
2019-10-16 09:02:32 +08:00
|
|
|
|
|
2018-12-21 11:39:05 +08:00
|
|
|
|
* 函数原型:
|
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
ret_t wstr_remove (wstr_t* str, uint32_t offset, uint32_t nr);
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
* 参数说明:
|
|
|
|
|
|
2018-12-20 17:33:31 +08:00
|
|
|
|
| 参数 | 类型 | 说明 |
|
|
|
|
|
| -------- | ----- | --------- |
|
|
|
|
|
| 返回值 | ret\_t | 返回RET\_OK表示成功,否则表示失败。 |
|
|
|
|
|
| str | wstr\_t* | str对象。 |
|
|
|
|
|
| offset | uint32\_t | 指定的位置。 |
|
|
|
|
|
| nr | uint32\_t | 要删除的字符数。 |
|
2018-12-21 18:29:29 +08:00
|
|
|
|
#### wstr\_reset 函数
|
|
|
|
|
-----------------------
|
|
|
|
|
|
2018-12-21 11:39:05 +08:00
|
|
|
|
* 函数功能:
|
|
|
|
|
|
2019-11-15 11:33:43 +08:00
|
|
|
|
> <p id="wstr_t_wstr_reset">重置字符串为空。
|
2019-10-16 09:02:32 +08:00
|
|
|
|
|
2018-12-21 11:39:05 +08:00
|
|
|
|
* 函数原型:
|
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
ret_t wstr_reset (wstr_t* str);
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
* 参数说明:
|
|
|
|
|
|
2018-12-20 17:33:31 +08:00
|
|
|
|
| 参数 | 类型 | 说明 |
|
|
|
|
|
| -------- | ----- | --------- |
|
|
|
|
|
| 返回值 | ret\_t | 返回RET\_OK表示成功,否则表示失败。 |
|
|
|
|
|
| str | wstr\_t* | str对象。 |
|
2018-12-21 18:29:29 +08:00
|
|
|
|
#### wstr\_set 函数
|
|
|
|
|
-----------------------
|
|
|
|
|
|
2018-12-21 11:39:05 +08:00
|
|
|
|
* 函数功能:
|
|
|
|
|
|
2019-11-15 11:33:43 +08:00
|
|
|
|
> <p id="wstr_t_wstr_set">设置字符串。
|
2019-10-16 09:02:32 +08:00
|
|
|
|
|
2018-12-21 11:39:05 +08:00
|
|
|
|
* 函数原型:
|
|
|
|
|
|
|
|
|
|
```
|
2023-06-29 10:44:29 +08:00
|
|
|
|
ret_t wstr_set (wstr_t* str, const wchar_t* text);
|
2018-12-21 11:39:05 +08:00
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
* 参数说明:
|
|
|
|
|
|
2018-12-20 17:33:31 +08:00
|
|
|
|
| 参数 | 类型 | 说明 |
|
|
|
|
|
| -------- | ----- | --------- |
|
|
|
|
|
| 返回值 | ret\_t | 返回RET\_OK表示成功,否则表示失败。 |
|
|
|
|
|
| str | wstr\_t* | str对象。 |
|
2023-06-29 10:44:29 +08:00
|
|
|
|
| text | const wchar\_t* | 要设置的字符串。 |
|
2018-12-21 18:29:29 +08:00
|
|
|
|
#### wstr\_set\_utf8 函数
|
|
|
|
|
-----------------------
|
|
|
|
|
|
2018-12-21 11:39:05 +08:00
|
|
|
|
* 函数功能:
|
|
|
|
|
|
2019-11-15 11:33:43 +08:00
|
|
|
|
> <p id="wstr_t_wstr_set_utf8">设置UTF8字符串。
|
2019-10-16 09:02:32 +08:00
|
|
|
|
|
2018-12-21 11:39:05 +08:00
|
|
|
|
* 函数原型:
|
|
|
|
|
|
|
|
|
|
```
|
2023-06-29 10:44:29 +08:00
|
|
|
|
ret_t wstr_set_utf8 (wstr_t* str, const char* text);
|
2018-12-21 11:39:05 +08:00
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
* 参数说明:
|
|
|
|
|
|
2018-12-20 17:33:31 +08:00
|
|
|
|
| 参数 | 类型 | 说明 |
|
|
|
|
|
| -------- | ----- | --------- |
|
|
|
|
|
| 返回值 | ret\_t | 返回RET\_OK表示成功,否则表示失败。 |
|
|
|
|
|
| str | wstr\_t* | str对象。 |
|
2023-06-29 10:44:29 +08:00
|
|
|
|
| text | const char* | 要设置的字符串。 |
|
2021-05-11 15:53:22 +08:00
|
|
|
|
#### wstr\_set\_utf8\_with\_len 函数
|
|
|
|
|
-----------------------
|
|
|
|
|
|
|
|
|
|
* 函数功能:
|
|
|
|
|
|
|
|
|
|
> <p id="wstr_t_wstr_set_utf8_with_len">设置UTF8字符串。
|
|
|
|
|
|
|
|
|
|
* 函数原型:
|
|
|
|
|
|
|
|
|
|
```
|
2023-06-29 10:44:29 +08:00
|
|
|
|
ret_t wstr_set_utf8_with_len (wstr_t* str, const char* text, uint32_t len);
|
2021-05-11 15:53:22 +08:00
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
* 参数说明:
|
|
|
|
|
|
|
|
|
|
| 参数 | 类型 | 说明 |
|
|
|
|
|
| -------- | ----- | --------- |
|
|
|
|
|
| 返回值 | ret\_t | 返回RET\_OK表示成功,否则表示失败。 |
|
|
|
|
|
| str | wstr\_t* | str对象。 |
|
2023-06-29 10:44:29 +08:00
|
|
|
|
| text | const char* | 要设置的字符串。 |
|
2021-05-11 15:53:22 +08:00
|
|
|
|
| len | uint32\_t | 长度。 |
|
2021-10-13 09:51:38 +08:00
|
|
|
|
#### wstr\_set\_with\_len 函数
|
|
|
|
|
-----------------------
|
|
|
|
|
|
|
|
|
|
* 函数功能:
|
|
|
|
|
|
|
|
|
|
> <p id="wstr_t_wstr_set_with_len">设置字符串。
|
|
|
|
|
|
|
|
|
|
* 函数原型:
|
|
|
|
|
|
|
|
|
|
```
|
2023-06-29 10:44:29 +08:00
|
|
|
|
ret_t wstr_set_with_len (wstr_t* str, const wchar_t* text, uint32_t len);
|
2021-10-13 09:51:38 +08:00
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
* 参数说明:
|
|
|
|
|
|
|
|
|
|
| 参数 | 类型 | 说明 |
|
|
|
|
|
| -------- | ----- | --------- |
|
|
|
|
|
| 返回值 | ret\_t | 返回RET\_OK表示成功,否则表示失败。 |
|
|
|
|
|
| str | wstr\_t* | str对象。 |
|
2023-06-29 10:44:29 +08:00
|
|
|
|
| text | const wchar\_t* | 要设置的字符串。 |
|
2021-10-13 09:51:38 +08:00
|
|
|
|
| len | uint32\_t | 字符串长度。 |
|
2018-12-21 18:29:29 +08:00
|
|
|
|
#### wstr\_to\_float 函数
|
|
|
|
|
-----------------------
|
|
|
|
|
|
2018-12-21 11:39:05 +08:00
|
|
|
|
* 函数功能:
|
|
|
|
|
|
2019-11-15 11:33:43 +08:00
|
|
|
|
> <p id="wstr_t_wstr_to_float">将字符串转成浮点数。
|
2019-10-16 09:02:32 +08:00
|
|
|
|
|
2018-12-21 11:39:05 +08:00
|
|
|
|
* 函数原型:
|
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
ret_t wstr_to_float (wstr_t* str, double* v);
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
* 参数说明:
|
|
|
|
|
|
2018-12-20 17:33:31 +08:00
|
|
|
|
| 参数 | 类型 | 说明 |
|
|
|
|
|
| -------- | ----- | --------- |
|
|
|
|
|
| 返回值 | ret\_t | 返回RET\_OK表示成功,否则表示失败。 |
|
|
|
|
|
| str | wstr\_t* | str对象。 |
|
|
|
|
|
| v | double* | 用于返回浮点数。 |
|
2018-12-21 18:29:29 +08:00
|
|
|
|
#### wstr\_to\_int 函数
|
|
|
|
|
-----------------------
|
|
|
|
|
|
2018-12-21 11:39:05 +08:00
|
|
|
|
* 函数功能:
|
|
|
|
|
|
2019-11-15 11:33:43 +08:00
|
|
|
|
> <p id="wstr_t_wstr_to_int">将字符串转成整数。
|
2019-10-16 09:02:32 +08:00
|
|
|
|
|
2018-12-21 11:39:05 +08:00
|
|
|
|
* 函数原型:
|
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
ret_t wstr_to_int (wstr_t* str, int32_t* v);
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
* 参数说明:
|
|
|
|
|
|
2018-12-20 17:33:31 +08:00
|
|
|
|
| 参数 | 类型 | 说明 |
|
|
|
|
|
| -------- | ----- | --------- |
|
|
|
|
|
| 返回值 | ret\_t | 返回RET\_OK表示成功,否则表示失败。 |
|
|
|
|
|
| str | wstr\_t* | str对象。 |
|
|
|
|
|
| v | int32\_t* | 用于返回整数。 |
|
2023-06-29 10:44:29 +08:00
|
|
|
|
#### wstr\_to\_int64 函数
|
|
|
|
|
-----------------------
|
|
|
|
|
|
|
|
|
|
* 函数功能:
|
|
|
|
|
|
|
|
|
|
> <p id="wstr_t_wstr_to_int64">将字符串转成整数。
|
|
|
|
|
|
|
|
|
|
* 函数原型:
|
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
ret_t wstr_to_int64 (wstr_t* str, int64_t* v);
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
* 参数说明:
|
|
|
|
|
|
|
|
|
|
| 参数 | 类型 | 说明 |
|
|
|
|
|
| -------- | ----- | --------- |
|
|
|
|
|
| 返回值 | ret\_t | 返回RET\_OK表示成功,否则表示失败。 |
|
|
|
|
|
| str | wstr\_t* | str对象。 |
|
|
|
|
|
| v | int64\_t* | 用于返回整数。 |
|
2018-12-21 18:29:29 +08:00
|
|
|
|
#### wstr\_trim\_float\_zero 函数
|
|
|
|
|
-----------------------
|
|
|
|
|
|
2018-12-21 11:39:05 +08:00
|
|
|
|
* 函数功能:
|
|
|
|
|
|
2019-11-15 11:33:43 +08:00
|
|
|
|
> <p id="wstr_t_wstr_trim_float_zero">去掉浮点数小数点尾部的零。
|
2019-10-16 09:02:32 +08:00
|
|
|
|
|
2018-12-21 11:39:05 +08:00
|
|
|
|
* 函数原型:
|
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
ret_t wstr_trim_float_zero (wstr_t* str);
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
* 参数说明:
|
|
|
|
|
|
2018-12-20 17:33:31 +08:00
|
|
|
|
| 参数 | 类型 | 说明 |
|
|
|
|
|
| -------- | ----- | --------- |
|
|
|
|
|
| 返回值 | ret\_t | 返回RET\_OK表示成功,否则表示失败。 |
|
|
|
|
|
| str | wstr\_t* | str对象。 |
|
|
|
|
|
#### capacity 属性
|
|
|
|
|
-----------------------
|
2019-11-15 11:33:43 +08:00
|
|
|
|
> <p id="wstr_t_capacity">容量。
|
2019-10-16 09:02:32 +08:00
|
|
|
|
|
2018-12-20 17:33:31 +08:00
|
|
|
|
* 类型:uint32\_t
|
|
|
|
|
|
|
|
|
|
| 特性 | 是否支持 |
|
|
|
|
|
| -------- | ----- |
|
|
|
|
|
| 可直接读取 | 是 |
|
|
|
|
|
| 可直接修改 | 否 |
|
|
|
|
|
#### size 属性
|
|
|
|
|
-----------------------
|
2019-11-15 11:33:43 +08:00
|
|
|
|
> <p id="wstr_t_size">长度。
|
2019-10-16 09:02:32 +08:00
|
|
|
|
|
2018-12-20 17:33:31 +08:00
|
|
|
|
* 类型:uint32\_t
|
|
|
|
|
|
|
|
|
|
| 特性 | 是否支持 |
|
|
|
|
|
| -------- | ----- |
|
|
|
|
|
| 可直接读取 | 是 |
|
|
|
|
|
| 可直接修改 | 否 |
|
|
|
|
|
#### str 属性
|
|
|
|
|
-----------------------
|
2019-11-15 11:33:43 +08:00
|
|
|
|
> <p id="wstr_t_str">字符串。
|
2019-10-16 09:02:32 +08:00
|
|
|
|
|
2018-12-20 17:33:31 +08:00
|
|
|
|
* 类型:wchar\_t*
|
|
|
|
|
|
|
|
|
|
| 特性 | 是否支持 |
|
|
|
|
|
| -------- | ----- |
|
|
|
|
|
| 可直接读取 | 是 |
|
|
|
|
|
| 可直接修改 | 否 |
|