Re: [PATCH v7 1/3] eal/windows: move fnmatch function to header file

2023-08-09 Thread Bruce Richardson
On Wed, Aug 09, 2023 at 01:18:56PM +0200, David Marchand wrote: > On Mon, Jul 31, 2023 at 5:39 PM Bruce Richardson > wrote: > > > > To allow the fnmatch function to be shared between libraries, without > > having to export it into the public namespace (since it's not prefixed > > with "rte"), we c

Re: [PATCH v7 1/3] eal/windows: move fnmatch function to header file

2023-08-09 Thread David Marchand
On Mon, Jul 31, 2023 at 5:39 PM Bruce Richardson wrote: > > To allow the fnmatch function to be shared between libraries, without > having to export it into the public namespace (since it's not prefixed > with "rte"), we can convert fnmatch.c to replace fnmatch.h. This allows > fnmatch function to

[PATCH v7 1/3] eal/windows: move fnmatch function to header file

2023-07-31 Thread Bruce Richardson
To allow the fnmatch function to be shared between libraries, without having to export it into the public namespace (since it's not prefixed with "rte"), we can convert fnmatch.c to replace fnmatch.h. This allows fnmatch function to be static and limited in scope to the current file, preventing dup