blob: 1930a0aab10a15c965c67b22c8e880e3fd78c5b1 [file] [log] [blame]
Rui Ueyama93c9af42016-06-29 08:01:32 +00001//===- Strings.h ------------------------------------------------*- C++ -*-===//
2//
3// The LLVM Linker
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9
10#ifndef LLD_COFF_STRINGS_H
11#define LLD_COFF_STRINGS_H
12
13#include "lld/Core/LLVM.h"
14#include <vector>
15
16namespace lld {
17namespace elf {
18bool globMatch(StringRef S, StringRef T);
19std::vector<uint8_t> parseHex(StringRef S);
20}
21}
22
23#endif