ccls/utils.h

8 lines
263 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);
void ParseTestExpectation(std::string filename, std::vector<std::string>* expected_output);