aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/include/pdb/utils/file.hpp
blob: 5b83f2b26ba1551b23e570c25033eb5c35b53886 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Copyright (c) 2017 Egor Tensin <Egor.Tensin@gmail.com>
// This file is part of the "PDB repository" project.
// For details, see https://github.com/egor-tensin/pdb-repo.
// Distributed under the MIT License.

#pragma once

#include <cstddef>

#include <string>

namespace pdb
{
    namespace file
    {
        std::size_t get_size(const std::string&);
    }
}