aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/python/marisa-trie/marisa/stdio.h
blob: 334ce568160fd77d90f968b8f3876295bfa560a7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#pragma once
#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_