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
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
);
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
);
20 #endif /* __WS_MEMPBRK_INT_H__ */