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 14 struct DFA; 15 16 void WriteTransitionTable(std::ofstream& out, const DFA& dfa, size_t states); 17 18 #endif // SKSL_TRANSITIONTABLE 19