1 #ifndef MARISA_H_ 2 #define MARISA_H_ 3 4 // "marisa/stdio.h" includes <cstdio> for I/O using std::FILE. 5 #include "marisa/stdio.h" 6 7 // "marisa/iostream.h" includes <iosfwd> for I/O using std::iostream. 8 #include "marisa/iostream.h" 9 10 // You can use <marisa/trie.h> instead of <marisa.h> if you don't need the 11 // above I/O interfaces and don't want to include the above I/O headers. 12 #include "marisa/trie.h" 13 14 #endif // MARISA_H_ 15