summaryrefslogtreecommitdiff
path: root/src/util.h
blob: dc9cd4162bb4260089aff5a44d6963a5a52467c5 (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 "libctor.h"

#include <string>
#include <filesystem>

std::string readFile(const std::string& fileName);
std::vector<std::string> readDeps(const std::string& depFile);
Language languageFromExtension(const std::filesystem::path& file);