Re: [PATCH v4 02/11] lib/charset: add u16_strlcat() function

2022-04-28 Thread Masahisa Kojima
Hi Heinrich, On Mon, 18 Apr 2022 at 16:47, Masahisa Kojima wrote: > > On Sat, 16 Apr 2022 at 16:32, Heinrich Schuchardt wrote: > > > > On 3/24/22 14:54, Masahisa Kojima wrote: > > > Provide u16 string version of strlcat(). > > > > > > Signed-off-by: Masahisa Kojima > > > Reviewed-by: Simon

Re: [PATCH v4 02/11] lib/charset: add u16_strlcat() function

2022-04-18 Thread Masahisa Kojima
On Sat, 16 Apr 2022 at 16:32, Heinrich Schuchardt wrote: > > On 3/24/22 14:54, Masahisa Kojima wrote: > > Provide u16 string version of strlcat(). > > > > Signed-off-by: Masahisa Kojima > > Reviewed-by: Simon Glass > > --- > > Changes in v4: > > - add blank line above the return statement > > >

Re: [PATCH v4 02/11] lib/charset: add u16_strlcat() function

2022-04-16 Thread Heinrich Schuchardt
On 3/24/22 14:54, Masahisa Kojima wrote: Provide u16 string version of strlcat(). Signed-off-by: Masahisa Kojima Reviewed-by: Simon Glass --- Changes in v4: - add blank line above the return statement Changes in v2: - implement u16_strlcat(with the destination buffer size in argument)

Re: [PATCH v4 02/11] lib/charset: add u16_strlcat() function

2022-04-04 Thread Masahisa Kojima
Hi Heinrich, On Sat, 2 Apr 2022 at 16:19, Heinrich Schuchardt wrote: > > On 3/24/22 14:54, Masahisa Kojima wrote: > > Provide u16 string version of strlcat(). > > > > Signed-off-by: Masahisa Kojima > > Reviewed-by: Simon Glass > > --- > > Changes in v4: > > - add blank line above the return

Re: [PATCH v4 02/11] lib/charset: add u16_strlcat() function

2022-04-02 Thread Heinrich Schuchardt
On 3/24/22 14:54, Masahisa Kojima wrote: Provide u16 string version of strlcat(). Signed-off-by: Masahisa Kojima Reviewed-by: Simon Glass --- Changes in v4: - add blank line above the return statement Changes in v2: - implement u16_strlcat(with the destination buffer size in argument)

[PATCH v4 02/11] lib/charset: add u16_strlcat() function

2022-03-24 Thread Masahisa Kojima
Provide u16 string version of strlcat(). Signed-off-by: Masahisa Kojima Reviewed-by: Simon Glass --- Changes in v4: - add blank line above the return statement Changes in v2: - implement u16_strlcat(with the destination buffer size in argument) instead of u16_strcat include/charset.h | 15