mirror of
https://github.com/yanyiwu/cppjieba.git
synced 2025-07-18 00:00:12 +08:00
11 lines
203 B
C++
11 lines
203 B
C++
#ifndef CPPCOMMON_IO_FUNCTS_H
|
|
#define CPPCOMMON_IO_FUNCTS_H
|
|
#include <fstream>
|
|
#include <iostream>
|
|
namespace CPPCOMMON
|
|
{
|
|
using namespace std;
|
|
string loadFile2Str(const char * const filepath);
|
|
}
|
|
#endif
|