dcerpc-nt: add UNION_ALIGN_TO... helpers
[wireshark-sm.git] / wsutil / ws_mempbrk_int.h
blob223cb64d0fa427addff551bf53e49ef6a7aaeb86
1 /** @file
3 * Wireshark - Network traffic analyzer
4 * By Gerald Combs <gerald@wireshark.org>
5 * Copyright 1998 Gerald Combs
7 * SPDX-License-Identifier: GPL-2.0-or-later
8 */
10 #ifndef __WS_MEMPBRK_INT_H__
11 #define __WS_MEMPBRK_INT_H__
13 const uint8_t *ws_mempbrk_portable_exec(const uint8_t* haystack, size_t haystacklen, const ws_mempbrk_pattern* pattern, unsigned char *found_needle);
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
20 #endif /* __WS_MEMPBRK_INT_H__ */