blob: 13692dd1b3e9238f1a7c73bdac88588d391e686f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
/* See LICENSE file for copyright and license details. */
#include "common.h"
void *
libautomata_execute_mp_automaton(const void *haystack, size_t length, LIBAUTOMATA_MP_AUTOMATON *automaton)
{
return libautomata_execute_kmp_automaton(haystack, length, (void *)automaton);
}
|