Sign in
third-party-mirror
/
mingw-w64
/
55554f98e8965b88bbf8df116ca92338fa25e466
/
.
/
mingw-w64-crt
/
libsrc
/
ws2tcpip
/
in6_is_addr_multicast.c
blob: 5878de8a9e2060b48c440820c587a8c2d1135347 [
file
] [
log
] [
blame
]
#ifndef
WIN32_LEAN_AND_MEAN
#define
WIN32_LEAN_AND_MEAN
#endif
#undef
__CRT__NO_INLINE
#define
__CRT__NO_INLINE
#include
<winsock2.h>
#include
<ws2tcpip.h>
int
IN6_IS_ADDR_MULTICAST
(
const
struct
in6_addr
*
a
)
{
return
(
a
->
s6_bytes
[
0
]
==
0xff
);
}