Initial Course
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
#include "pointer_arithmetic.hpp"
|
||||
|
||||
namespace pointers {
|
||||
|
||||
auto pointer_distance(const int* begin, const int* end) -> std::size_t { (void)begin; (void)end; return 0; }
|
||||
auto find_pointer(const int* begin, const int* end, int target) -> const int* { (void)begin; (void)end; (void)target; return end; }
|
||||
void reverse_in_place(int* begin, int* end) { (void)begin; (void)end; }
|
||||
|
||||
} // namespace pointers
|
||||
Reference in New Issue
Block a user