10 lines
356 B
C++
10 lines
356 B
C++
#include "default_parameters.hpp"
|
|||
|
|
|
||
|
|
namespace functions {
|
||
|
|
|
||
|
|
auto repeat(char ch, int count) -> std::string { (void)ch; (void)count; return {}; }
|
||
|
|
auto power(int base, int exponent) -> long long { (void)base; (void)exponent; return 0; }
|
||
|
|
auto clamp(int value, int min, int max) -> int { (void)value; (void)min; (void)max; return 0; }
|
||
|
|
|
||
|
|
} // namespace functions
|