ccls/utils.h

8 lines
250 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-18 19:37:24 +00:00
void ParseTestExpectation(std::string filename, std::string* expected_output);