ccls/utils.h
Jacob Dufault 0dc27bd3ac Update
2017-02-17 01:57:44 -08:00

8 lines
263 B
C++

#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);