You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#ifndef MARISA_MYSTDIO_H_
|
|
#define MARISA_MYSTDIO_H_
|
|
|
|
#include <cstdio>
|
|
|
|
namespace marisa {
|
|
|
|
class Trie;
|
|
|
|
void fread(std::FILE *file, Trie *trie);
|
|
void fwrite(std::FILE *file, const Trie &trie);
|
|
|
|
} // namespace marisa
|
|
|
|
#endif // MARISA_MYSTDIO_H_
|