ccls/utils.h

10 lines
290 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);
void Fail(const std::string& message);