Orcus
Loading...
Searching...
No Matches
format_detection.hpp
1/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2/*
3 * This Source Code Form is subject to the terms of the Mozilla Public
4 * License, v. 2.0. If a copy of the MPL was not distributed with this
5 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
6 */
7
8#ifndef ORCUS_FORMAT_DETECTION_HPP
9#define ORCUS_FORMAT_DETECTION_HPP
10
11#include "orcus/env.hpp"
12#include "orcus/types.hpp"
13
14#include <cstdlib>
15
16namespace orcus {
17
23ORCUS_DLLPUBLIC format_t detect(std::string_view strm);
24
25}
26
27#endif
28/* vim:set shiftwidth=4 softtabstop=4 expandtab: */