Re: [PATCH v5 01/17] lib/charset: add u16_strlcat() function

2022-04-29 Thread Heinrich Schuchardt
On 4/28/22 10:09, Masahisa Kojima wrote: Provide u16 string version of strlcat(). Signed-off-by: Masahisa Kojima --- Changes in v5: - change 3rd argument from size to count, it indicates the maximum u16 string count that dest buffer can have. Other u16_strXXX functions in U-Boot use

[PATCH v5 01/17] lib/charset: add u16_strlcat() function

2022-04-28 Thread Masahisa Kojima
Provide u16 string version of strlcat(). Signed-off-by: Masahisa Kojima --- Changes in v5: - change 3rd argument from size to count, it indicates the maximum u16 string count that dest buffer can have. Other u16_strXXX functions in U-Boot use string count, not the buffer size.