2018-08-21 05:27:52 +00:00
|
|
|
// Copyright 2017-2018 ccls Authors
|
|
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
|
2017-05-20 06:35:14 +00:00
|
|
|
#pragma once
|
|
|
|
|
2018-07-06 00:53:33 +00:00
|
|
|
#include <clang/Basic/FileManager.h>
|
2017-12-29 16:29:10 +00:00
|
|
|
|
2018-07-15 07:45:51 +00:00
|
|
|
#include <string>
|
2017-09-22 01:14:57 +00:00
|
|
|
|
2017-05-21 03:46:15 +00:00
|
|
|
// Returns the absolute path to |file|.
|
2018-08-09 17:08:14 +00:00
|
|
|
std::string FileName(const clang::FileEntry &file);
|
2017-11-04 22:29:03 +00:00
|
|
|
|
2018-08-09 17:08:14 +00:00
|
|
|
const char *ClangBuiltinTypeName(int);
|