blob: 448ac39441bc0739aa2912abc965036d0bcea2a8 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
/* See LICENSE file for copyright and license details. */
#include "common.h"
void
libautomata_free_automaton(struct libautomata_automaton *automaton)
{
libautomata_destroy_automaton(automaton);
free(automaton);
}
|