Update rive-cpp to 2.0 version
[platform/core/uifw/rive-tizen.git] / submodule / skia / src / sksl / lex / TransitionTable.h
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