blob: 9c6688fbeef9bbf6ac32e4eea4efa2243e221a1e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
// file : bpkg/utility -*- C++ -*-
// copyright : Copyright (c) 2014-2015 Code Synthesis Ltd
// license : MIT; see accompanying LICENSE file
#ifndef BPKG_UTILITY
#define BPKG_UTILITY
#include <bpkg/types>
namespace bpkg
{
bool
exists (const path&);
bool
exists (const dir_path&);
}
#endif // BPKG_UTILITY
|