aboutsummaryrefslogtreecommitdiff
path: root/InClassExercise 9/ReferenceExamples.h
blob: babe760f96a0cd5b02fa5953a92b48cb1362accb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
#ifndef REFERENCE_EXAMPLES_H
#define REFERENCE_EXAMPLES_H

void Swap(int& x, int& y);


void Standardize_101(int& n);

void Square(int& x);

#endif