1/*
2 * Copyright 2021 Google Inc.
3 *
4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file.
6 */
7
8#ifndef SKSL_TRANSITIONTABLE
9#define SKSL_TRANSITIONTABLE
10
11#include <fstream>
12
13struct DFA;
14
15void WriteTransitionTable(std::ofstream& out, const DFA& dfa, size_t states);
16
17#endif // SKSL_TRANSITIONTABLE
18