blob: f3f78da632554ef8f6c5a3ad4fe505a8667e790e (
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_mp_automaton(LIBAUTOMATA_MP_AUTOMATON *automaton)
{
automaton->position = 0;
}
|