TU-Programmieren_2/lab3/modules/iue-other/func.hpp
2025-04-09 10:22:44 +02:00

10 lines
151 B
C++

#pragma once
#include "func.detail.hpp"
namespace iue::other {
inline int header_only(int a) { return detail::calc(a); }
} // namespace iue::other