//===--- RIFF.cpp - Binary container file format --------------------------===// // // 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 // //===----------------------------------------------------------------------===// #include "RIFF.h" #include "support/Logger.h" #include "llvm/Support/Endian.h" namespace clang { namespace clangd { namespace riff { llvm::Expected<Chunk> readChunk(llvm::StringRef &Stream) { … } llvm::raw_ostream &operator<<(llvm::raw_ostream &OS, const Chunk &C) { … } llvm::Expected<File> readFile(llvm::StringRef Stream) { … } llvm::raw_ostream &operator<<(llvm::raw_ostream &OS, const File &F) { … } } // namespace riff } // namespace clangd } // namespace clang