ccls/utils.h
2017-03-01 00:36:11 -08:00

13 lines
367 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);
void Fail(const std::string& message);
void WriteToFile(const std::string& filename, const std::string& content);