Flutter Engine
The Flutter Engine
Loading...
Searching...
No Matches
TransitionTable.h
Go to the documentation of this file.
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 <stddef.h>
12#include <fstream>
13
14struct DFA;
15
16void WriteTransitionTable(std::ofstream& out, const DFA& dfa, size_t states);
17
18#endif // SKSL_TRANSITIONTABLE
void WriteTransitionTable(std::ofstream &out, const DFA &dfa, size_t states)
Definition DFA.h:17