mirror of
https://github.com/zeek/zeek.git
synced 2025-10-11 02:58:20 +00:00
18 lines
260 B
C
18 lines
260 B
C
#ifndef BRO_INET_NTOP_H
|
|
#define BRO_INET_NTOP_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#include <sys/socket.h>
|
|
|
|
const char *
|
|
bro_inet_ntop(int af, const void * __restrict src, char * __restrict dst,
|
|
socklen_t size);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|