fastText  d00d36476b15
Fast text processing tool/library
utils.h
Go to the documentation of this file.
1 
10 #ifndef FASTTEXT_UTILS_H
11 #define FASTTEXT_UTILS_H
12 
13 #include <fstream>
14 
15 namespace fasttext {
16 
17 namespace utils {
18 
19  int64_t size(std::ifstream&);
20  void seek(std::ifstream&, int64_t);
21 }
22 
23 }
24 
25 #endif
Definition: args.cc:17
int64_t size(std::ifstream &ifs)
Definition: utils.cc:18
void seek(std::ifstream &ifs, int64_t pos)
Definition: utils.cc:23