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