mirror of
https://github.com/msojocs/wx-compiler.git
synced 2025-07-19 00:00:04 +08:00
8 lines
199 B
C++
8 lines
199 B
C++
#ifndef __FILE_H__
|
|
#define __FILE_H__
|
|
#include <string>
|
|
|
|
int readFile (const char* fileName, std::string &result);
|
|
std::string getNextArg(std::string &data, std::string const & lineEndMark);
|
|
|
|
#endif |