Wireshark  2.9.0-477-g68ec514b
The Wireshark network protocol analyzer
ws_mempbrk_int.h
1 /* ws_mempbrk_int.h
2  *
3  * Wireshark - Network traffic analyzer
4  * By Gerald Combs <gerald@wireshark.org>
5  * Copyright 1998 Gerald Combs
6  *
7  * SPDX-License-Identifier: GPL-2.0-or-later
8  */
9 
10 #ifndef __WS_MEMPBRK_INT_H__
11 #define __WS_MEMPBRK_INT_H__
12 
13 const guint8 *ws_mempbrk_portable_exec(const guint8* haystack, size_t haystacklen, const ws_mempbrk_pattern* pattern, guchar *found_needle);
14 
15 #ifdef HAVE_SSE4_2
16 void ws_mempbrk_sse42_compile(ws_mempbrk_pattern* pattern, const gchar *needles);
17 const char *ws_mempbrk_sse42_exec(const char* haystack, size_t haystacklen, const ws_mempbrk_pattern* pattern, guchar *found_needle);
18 #endif
19 
20 #endif /* __WS_MEMPBRK_INT_H__ */
Definition: ws_mempbrk.h:21