Compiling windows project: error: 'ip2string.h' file not found #include <ip2string.h>

I am on a linux system compiling a windows project targeting x86_64-windows-gnu.

But I obtain the following error:

error: 'ip2string.h' file not found
#include <ip2string.h>

How do I get this header?

In general, why does MinGW not have some things in it that MSVC does?

Looking more like I have to abandon x86_64-windows-gnu and setup a github actions windows running to achieve x86_64-windows-msvc

I am cross compiling from linux to windows -msvc.
If you can accept microsoft visual studio license, you can use xwin to download the windows sdk and the microsoft c runtime.
The command line, include paths, and library paths: zig translate-c windows.h ยท GitHub