// Part of the Carbon Language project, under the Apache License v2.0 with LLVM // Exceptions. See /LICENSE for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception #ifndef CARBON_EXPLORER_SYNTAX_PRELUDE_H_ #define CARBON_EXPLORER_SYNTAX_PRELUDE_H_ #include #include "explorer/ast/declaration.h" #include "explorer/common/arena.h" #include "explorer/common/nonnull.h" namespace Carbon { // Adds the Carbon prelude to `declarations`. void AddPrelude(std::string_view prelude_file_name, Nonnull arena, std::vector>* declarations, int* num_prelude_declarations); } // namespace Carbon #endif // CARBON_EXPLORER_SYNTAX_PRELUDE_H_