You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
suricata/src/win32-misc.h

13 lines
251 B
C

#ifndef __WIN32_MISC_H__
#define __WIN32_MISC_H__
#define index strchr
#define rindex strrchr
const char* inet_ntop(int af, const void *src, char *dst, uint32_t cnt);
int inet_pton(int af, const char *src, void *dst);
#define geteuid() (0)
#endif