1 //===-- flags_parser.h ------------------------------------------*- C++ -*-===//
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
9 #ifndef SCUDO_FLAGS_PARSER_H_
10 #define SCUDO_FLAGS_PARSER_H_
13 #include "string_utils.h"
19 enum class FlagType
: u8
{
26 void registerFlag(const char *Name
, const char *Desc
, FlagType Type
,
28 void parseString(const char *S
);
29 void printFlagDescriptions();
32 static const u32 MaxFlags
= 20;
40 u32 NumberOfFlags
= 0;
41 const char *Buffer
= nullptr;
44 void reportFatalError(const char *Error
);
45 void skipWhitespace();
48 bool runHandler(const char *Name
, const char *Value
);
51 void reportUnrecognizedFlags();
55 #endif // SCUDO_FLAGS_PARSER_H_