mirror of
https://github.com/MaskRay/ccls.git
synced 2024-11-22 07:35:08 +00:00
10 lines
290 B
C++
10 lines
290 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); |