Wireshark 4.7.0
The Wireshark network protocol analyzer
Loading...
Searching...
No Matches
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
27const uint8_t *ws_mempbrk_portable_exec(const uint8_t* haystack, size_t haystacklen, const ws_mempbrk_pattern* pattern, unsigned char *found_needle);
28
29#ifdef HAVE_SSE4_2
30
41void ws_mempbrk_sse42_compile(ws_mempbrk_pattern* pattern, const char *needles);
42
57const char *ws_mempbrk_sse42_exec(const char* haystack, size_t haystacklen, const ws_mempbrk_pattern* pattern, unsigned char *found_needle);
58#endif
59
60#endif /* __WS_MEMPBRK_INT_H__ */
Definition ws_mempbrk.h:21
const uint8_t * ws_mempbrk_portable_exec(const uint8_t *haystack, size_t haystacklen, const ws_mempbrk_pattern *pattern, unsigned char *found_needle)
Search for the first matching byte in a buffer using a precompiled pattern.
Definition ws_mempbrk.c:47