ccls/utils.h

13 lines
367 B
C
Raw Normal View History

2017-02-17 09:57:44 +00:00
#pragma once
#include <string>
#include <vector>
std::vector<std::string> GetFilesInFolder(std::string folder);
std::vector<std::string> ReadLines(std::string filename);
2017-02-23 08:18:54 +00:00
void ParseTestExpectation(std::string filename, std::string* expected_output);
2017-03-01 08:36:11 +00:00
void Fail(const std::string& message);
void WriteToFile(const std::string& filename, const std::string& content);