xref: /aosp_15_r20/external/marisa-trie/include/marisa/stdio.h (revision ab8db090fce404b23716c4c9194221ee27efe31c)
1 #ifndef MARISA_MYSTDIO_H_
2 #define MARISA_MYSTDIO_H_
3 
4 #include <cstdio>
5 
6 namespace marisa {
7 
8 class Trie;
9 
10 void fread(std::FILE *file, Trie *trie);
11 void fwrite(std::FILE *file, const Trie &trie);
12 
13 }  // namespace marisa
14 
15 #endif  // MARISA_MYSTDIO_H_
16