mirror of
https://review.haiku-os.org/buildtools
synced 2025-01-31 18:44:48 +01:00
26 lines
808 B
C++
26 lines
808 B
C++
//===-- sanitizer_flags.h ---------------------------------------*- C++ -*-===//
|
|
//
|
|
// 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
|