ccls/utils.h
2017-02-18 11:37:24 -08:00

8 lines
250 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::string* expected_output);