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.
15 lines
422 B
15 lines
422 B
#ifndef MARISA_H_
|
|
#define MARISA_H_
|
|
|
|
// "marisa/stdio.h" includes <cstdio> for I/O using std::FILE.
|
|
#include "marisa/stdio.h"
|
|
|
|
// "marisa/iostream.h" includes <iosfwd> for I/O using std::iostream.
|
|
#include "marisa/iostream.h"
|
|
|
|
// You can use <marisa/trie.h> instead of <marisa.h> if you don't need the
|
|
// above I/O interfaces and don't want to include the above I/O headers.
|
|
#include "marisa/trie.h"
|
|
|
|
#endif // MARISA_H_
|