mirror of
https://github.com/yanyiwu/cppjieba.git
synced 2025-07-18 00:00:12 +08:00
15 lines
332 B
C++
15 lines
332 B
C++
/************************************
|
|
* file enc : utf8
|
|
* author : wuyanyi09@gmail.com
|
|
************************************/
|
|
#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
|