Initial Course
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
#pragma once
|
||||
|
||||
#include <string>
|
||||
#include <vector>
|
||||
|
||||
namespace functions {
|
||||
|
||||
[[nodiscard]] auto square(int value) -> int;
|
||||
void swap_integers(int& lhs, int& rhs);
|
||||
[[nodiscard]] auto concatenate(const std::vector<std::string>& parts) -> std::string;
|
||||
void append_suffix(std::string& text, const std::string& suffix);
|
||||
|
||||
} // namespace functions
|
||||
Reference in New Issue
Block a user