diff options
| author | Connor McDowell <[email protected]> | 2024-02-08 12:15:38 -0800 |
|---|---|---|
| committer | Connor McDowell <[email protected]> | 2024-02-08 12:15:38 -0800 |
| commit | 672a0bc2400b51e57e6d73142cfa76010255a72c (patch) | |
| tree | 283d6be9755949e81c7436859c5acf51ab5dea94 /Inclass-9/ReferenceExamples.h | |
| parent | .cpp and .h files set up, labled, and included. (diff) | |
| download | in-class-exercise-9-connormcdowell275-672a0bc2400b51e57e6d73142cfa76010255a72c.tar.xz in-class-exercise-9-connormcdowell275-672a0bc2400b51e57e6d73142cfa76010255a72c.zip | |
gone through some of the lecture, includes node and basic ref
Diffstat (limited to 'Inclass-9/ReferenceExamples.h')
| -rw-r--r-- | Inclass-9/ReferenceExamples.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/Inclass-9/ReferenceExamples.h b/Inclass-9/ReferenceExamples.h index 5c679d5..a5c5ce0 100644 --- a/Inclass-9/ReferenceExamples.h +++ b/Inclass-9/ReferenceExamples.h @@ -1,7 +1,11 @@ #ifndef HEADER -#def HEADER +#define HEADER +void Swap(int& x, int& y); +void Standardize_101(int& n); + +void Square(int& x); |