blob: 23f604983bc3f199eac41c7be42fc0165b0ce5b2 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
/* See LICENSE file for copyright and license details. */
#include "common.h"
void
libautomata_reset_kmp_automaton(LIBAUTOMATA_KMP_AUTOMATON *automaton)
{
automaton->position = 0;
}
|