mirror of
https://github.com/MaskRay/ccls.git
synced 2025-06-08 01:04:54 +00:00
15 lines
385 B
C++
15 lines
385 B
C++
// Copyright 2017-2018 ccls Authors
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
#pragma once
|
|
|
|
#include <llvm/Support/FileSystem.h>
|
|
#include <llvm/Support/Path.h>
|
|
|
|
#include <functional>
|
|
#include <string>
|
|
|
|
void getFilesInFolder(std::string folder, bool recursive,
|
|
bool add_folder_to_path,
|
|
const std::function<void(const std::string &)> &handler);
|