libicmp/tests/test_helpers.h
2026-01-25 15:48:39 +01:00

20 lines
226 B
C

#ifndef TEST_HELPERS_H
#define TEST_HELPERS_H
#include "icmp.h"
static inline int
has_net_raw_capability(void)
{
icmp_handle_t *h = icmp_create();
if (NULL != h)
{
icmp_destroy(h);
return 1;
}
return 0;
}
#endif