summaryrefslogtreecommitdiffstats
path: root/src/libixion/formula_function_opcode.cpp
blob: bf7db5ab08d6ade593923fdcee1634f7332c1461 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
 * This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
 */

#include "ixion/formula_function_opcode.hpp"

#include "formula_functions.hpp"

namespace ixion {

std::string_view get_formula_function_name(formula_function_t func)
{
    return formula_functions::get_function_name(func);
}

formula_function_t get_formula_function_opcode(std::string_view s)
{
    return formula_functions::get_function_opcode(s);
}

}

/* vim:set shiftwidth=4 softtabstop=4 expandtab: */