blob: 2894655c7b9ef477919dc2e80dc9303bb302fee8 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#ifndef POINTER_EXERCISES_H
#define POINTER_EXERCISES_H
#include "Node.h"
void Swap(Node* first, Node* second);
void Standardize_101(Node* node);
void Square(Node* node);
#endif // !POINTER_EXERCISES_H
|