Re: [RESEND RFC PATCH v2 2/4] lib/charset: add u16_strlcat() function

2022-03-13 Thread Masahisa Kojima
Hi Simon, On Sat, 12 Mar 2022 at 11:24, Simon Glass wrote: > > Hi Masahisa, > > On Thu, 24 Feb 2022 at 18:31, Masahisa Kojima > wrote: > > > > Provide u16 string version of strlcat(). > > > > Signed-off-by: Masahisa Kojima > > --- > > Changes in v2: > > - implement u16_strlcat(with the

Re: [RESEND RFC PATCH v2 2/4] lib/charset: add u16_strlcat() function

2022-03-11 Thread Simon Glass
Hi Masahisa, On Thu, 24 Feb 2022 at 18:31, Masahisa Kojima wrote: > > Provide u16 string version of strlcat(). > > Signed-off-by: Masahisa Kojima > --- > Changes in v2: > - implement u16_strlcat(with the destination buffer size in argument) > instead of u16_strcat > > include/charset.h | 15

[RESEND RFC PATCH v2 2/4] lib/charset: add u16_strlcat() function

2022-02-24 Thread Masahisa Kojima
Provide u16 string version of strlcat(). Signed-off-by: Masahisa Kojima --- Changes in v2: - implement u16_strlcat(with the destination buffer size in argument) instead of u16_strcat include/charset.h | 15 +++ lib/charset.c | 20 2 files changed, 35