mirror of
https://github.com/MaskRay/ccls.git
synced 2024-11-26 17:41:58 +00:00
14 lines
279 B
C++
14 lines
279 B
C++
// Copyright 2017-2018 ccls Authors
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
#pragma once
|
|
|
|
#include <clang/Basic/FileManager.h>
|
|
|
|
#include <string>
|
|
|
|
// Returns the absolute path to |file|.
|
|
std::string FileName(const clang::FileEntry &file);
|
|
|
|
const char *ClangBuiltinTypeName(int);
|