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