Re: [PATCH v4 1/2] cmdline: add floating point support

2025-05-07 Thread Burakov, Anatoly
On 5/7/2025 12:35 PM, Konstantin Ananyev wrote: Add support for parsing floating point numbers in cmdline library, as well as unit tests for the new functionality. The parser supports single and double precision floats, and will understand decimal fractions as well as scientific notation. Th

RE: [PATCH v4 1/2] cmdline: add floating point support

2025-05-07 Thread Konstantin Ananyev
> -Original Message- > From: Burakov, Anatoly > Sent: Wednesday, May 7, 2025 12:07 PM > To: Konstantin Ananyev ; dev@dpdk.org > Subject: Re: [PATCH v4 1/2] cmdline: add floating point support > > On 5/7/2025 12:35 PM, Konstantin Ananyev wrote: > > >

Re: [PATCH v4 1/2] cmdline: add floating point support

2025-05-07 Thread Burakov, Anatoly
On 5/7/2025 2:24 PM, Konstantin Ananyev wrote: -Original Message- From: Burakov, Anatoly Sent: Wednesday, May 7, 2025 12:07 PM To: Konstantin Ananyev ; dev@dpdk.org Subject: Re: [PATCH v4 1/2] cmdline: add floating point support On 5/7/2025 12:35 PM, Konstantin Ananyev wrote

RE: [PATCH v4 1/2] cmdline: add floating point support

2025-05-07 Thread Konstantin Ananyev
> Add support for parsing floating point numbers in cmdline library, as well > as unit tests for the new functionality. The parser supports single and > double precision floats, and will understand decimal fractions as well as > scientific notation. There are standard functions for that: strtod

[PATCH v4 1/2] cmdline: add floating point support

2025-05-07 Thread Anatoly Burakov
Add support for parsing floating point numbers in cmdline library, as well as unit tests for the new functionality. The parser supports single and double precision floats, and will understand decimal fractions as well as scientific notation. Signed-off-by: Anatoly Burakov --- Notes: v3 -> v4