//===-- flags_parser.h ------------------------------------------*- 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 // //===----------------------------------------------------------------------===// #ifndef SCUDO_FLAGS_PARSER_H_ #define SCUDO_FLAGS_PARSER_H_ #include "report.h" #include "string_utils.h" #include <stddef.h> namespace scudo { enum class FlagType : u8 { … }; class FlagParser { … }; void reportUnrecognizedFlags(); } // namespace scudo #endif // SCUDO_FLAGS_PARSER_H_