mirror of
https://github.com/zeek/zeek.git
synced 2025-10-09 18:18:19 +00:00
19 lines
283 B
C
19 lines
283 B
C
#ifndef BRO_INET_NTOP_H
|
|
#define BRO_INET_NTOP_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#include <sys/types.h>
|
|
#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
|