llvm/clang/lib/Basic/Version.cpp

//===- Version.cpp - Clang Version Number -----------------------*- C++ -*-===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//
//
// This file defines several version-related utility functions for Clang.
//
//===----------------------------------------------------------------------===//

#include "clang/Basic/Version.h"
#include "clang/Basic/LLVM.h"
#include "clang/Config/config.h"
#include "llvm/Support/raw_ostream.h"
#include <cstdlib>
#include <cstring>

#include "VCSVersion.inc"

namespace clang {

std::string getClangRepositoryPath() {}

std::string getLLVMRepositoryPath() {}

std::string getClangRevision() {}

std::string getLLVMRevision() {}

std::string getClangVendor() {}

std::string getClangFullRepositoryVersion() {}

std::string getClangFullVersion() {}

std::string getClangToolFullVersion(StringRef ToolName) {}

std::string getClangFullCPPVersion() {}

} // end namespace clang