blob: c7e3b9af9227f9fb09c72d6468298e5946a4f7ab (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
// -*- c++ -*-
// Distributed under the BSD 2-Clause License.
// See accompanying file LICENSE for details.
#pragma once
#include <string>
struct Settings;
struct ExternalManual;
struct Flags;
int resolv(const Settings& settings, const std::string& name,
const ExternalManual& ext, Flags& flags);
|