aboutsummaryrefslogtreecommitdiff
path: root/project/NestedLoops.h
diff options
context:
space:
mode:
authorConnor McDowell <[email protected]>2024-02-02 11:13:34 -0800
committerConnor McDowell <[email protected]>2024-02-02 11:13:34 -0800
commitb4f93c2590042f79c3b58eed7e6cfe64e8329aeb (patch)
treebaa8d23edabd63b1ef408a3711a561d85d54c762 /project/NestedLoops.h
parentproject created, program.cpp, NestedLoops.cpp, and NestedLoops.h created. (diff)
downloadin-class-exercise-8-connormcdowell275-b4f93c2590042f79c3b58eed7e6cfe64e8329aeb.tar.xz
in-class-exercise-8-connormcdowell275-b4f93c2590042f79c3b58eed7e6cfe64e8329aeb.zip
framework set up for all files
Diffstat (limited to 'project/NestedLoops.h')
-rw-r--r--project/NestedLoops.h13
1 files changed, 12 insertions, 1 deletions
diff --git a/project/NestedLoops.h b/project/NestedLoops.h
index 6f70f09..d14b549 100644
--- a/project/NestedLoops.h
+++ b/project/NestedLoops.h
@@ -1 +1,12 @@
-#pragma once
+#ifndef NestedLoops
+#define NestedLoops
+
+void ForLoop(size_t n);
+
+void WhileLoop(size_t n);
+
+void DoWhileLoop(size_t n);
+
+
+#endif NestedLoops
+