forked from OSchip/llvm-project
28 lines
867 B
C++
28 lines
867 B
C++
//===-- sanitizer_flags.h ---------------------------------------*- C++ -*-===//
|
|
//
|
|
// The LLVM Compiler Infrastructure
|
|
//
|
|
// This file is distributed under the University of Illinois Open Source
|
|
// License. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
//
|
|
// This file is a part of ThreadSanitizer/AddressSanitizer runtime.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#ifndef SANITIZER_FLAGS_H
|
|
#define SANITIZER_FLAGS_H
|
|
|
|
#include "sanitizer_internal_defs.h"
|
|
|
|
namespace __sanitizer {
|
|
|
|
void ParseFlag(const char *env, bool *flag, const char *name);
|
|
void ParseFlag(const char *env, int *flag, const char *name);
|
|
void ParseFlag(const char *env, const char **flag, const char *name);
|
|
|
|
} // namespace __sanitizer
|
|
|
|
#endif // SANITIZER_FLAGS_H
|