Re: [PATCH 1/2] tools/nolibc: add support for [v]sscanf()

2024-08-03 Thread Willy Tarreau
On Fri, Aug 02, 2024 at 05:48:13PM +0200, Thomas Weißschuh wrote: > > With all these libc functionality added, it isn't nolibc looks like :) > > Well :-) > > The main motivation is to provide kselftests compatibility. > Maybe Willy disagrees. No no I'm perfectly fine with adding the functions th

Re: [PATCH 1/2] tools/nolibc: add support for [v]sscanf()

2024-08-02 Thread Shuah Khan
On 8/2/24 09:48, Thomas Weißschuh wrote: On 2024-07-31 17:01:09+, Shuah Khan wrote: On 7/31/24 12:32, Thomas Weißschuh wrote: The implementation is limited and only supports numeric arguments. I would like to see more information in here. Why is this needed etc. etc. Ack. Signed-off-

Re: [PATCH 1/2] tools/nolibc: add support for [v]sscanf()

2024-08-02 Thread Thomas Weißschuh
On 2024-07-31 17:01:09+, Shuah Khan wrote: > On 7/31/24 12:32, Thomas Weißschuh wrote: > > The implementation is limited and only supports numeric arguments. > > I would like to see more information in here. Why is this needed > etc. etc. Ack. > > > > Signed-off-by: Thomas Weißschuh > > --

Re: [PATCH 1/2] tools/nolibc: add support for [v]sscanf()

2024-07-31 Thread Shuah Khan
On 7/31/24 12:32, Thomas Weißschuh wrote: The implementation is limited and only supports numeric arguments. I would like to see more information in here. Why is this needed etc. etc. Signed-off-by: Thomas Weißschuh --- tools/include/nolibc/stdio.h | 93 +++

[PATCH 1/2] tools/nolibc: add support for [v]sscanf()

2024-07-31 Thread Thomas Weißschuh
The implementation is limited and only supports numeric arguments. Signed-off-by: Thomas Weißschuh --- tools/include/nolibc/stdio.h | 93 tools/testing/selftests/nolibc/nolibc-test.c | 59 ++ 2 files changed, 152 insertions(+) diff --