Wireshark  4.3.0
The Wireshark network protocol analyzer
ws_mempbrk_int.h
Go to the documentation of this file.
1 
10 #ifndef __WS_MEMPBRK_INT_H__
11 #define __WS_MEMPBRK_INT_H__
12 
13 const uint8_t *ws_mempbrk_portable_exec(const uint8_t* haystack, size_t haystacklen, const ws_mempbrk_pattern* pattern, unsigned char *found_needle);
14 
15 #ifdef HAVE_SSE4_2
16 void ws_mempbrk_sse42_compile(ws_mempbrk_pattern* pattern, const char *needles);
17 const char *ws_mempbrk_sse42_exec(const char* haystack, size_t haystacklen, const ws_mempbrk_pattern* pattern, unsigned char *found_needle);
18 #endif
19 
20 #endif /* __WS_MEMPBRK_INT_H__ */
Definition: ws_mempbrk.h:21