mirror of
https://github.com/MaskRay/ccls.git
synced 2025-02-16 21:58:08 +00:00
8 lines
263 B
C
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);
|