aboutsummaryrefslogtreecommitdiff
path: root/include/lldb/Utility/NameMatches.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/lldb/Utility/NameMatches.h')
-rw-r--r--include/lldb/Utility/NameMatches.h19
1 files changed, 19 insertions, 0 deletions
diff --git a/include/lldb/Utility/NameMatches.h b/include/lldb/Utility/NameMatches.h
new file mode 100644
index 000000000000..5fe6565d06f9
--- /dev/null
+++ b/include/lldb/Utility/NameMatches.h
@@ -0,0 +1,19 @@
+//===-- NameMatches.h -------------------------------------------*- C++ -*-===//
+//
+// The LLVM Compiler Infrastructure
+//
+// This file is distributed under the University of Illinois Open Source
+// License. See LICENSE.TXT for details.
+//
+//===----------------------------------------------------------------------===//
+#ifndef LLDB_UTILITY_NAMEMATCHES_H
+#define LLDB_UTILITY_NAMEMATCHES_H
+
+#include "lldb/lldb-private-enumerations.h"
+
+namespace lldb_private
+{
+bool NameMatches(const char *name, NameMatchType match_type, const char *match);
+}
+
+#endif