aboutsummaryrefslogtreecommitdiff
path: root/Project1/Loops.h
diff options
context:
space:
mode:
authorConnor McDowell <[email protected]>2024-01-30 12:11:00 -0800
committerConnor McDowell <[email protected]>2024-01-30 12:11:00 -0800
commita6a86fd67296838761e81b7a8c4e2cb0e6dcd6f7 (patch)
treee7fa6068de1301c48d0da45aed88b9b15b7d21cb /Project1/Loops.h
parentpost notes, all comits after include exercise proper (diff)
downloadin-class-exercise-7-connormcdowell275-main.tar.xz
in-class-exercise-7-connormcdowell275-main.zip
all loops created, header called, both .cpps working as expectedHEADmain
Diffstat (limited to 'Project1/Loops.h')
-rw-r--r--Project1/Loops.h12
1 files changed, 11 insertions, 1 deletions
diff --git a/Project1/Loops.h b/Project1/Loops.h
index 6f70f09..7707edf 100644
--- a/Project1/Loops.h
+++ b/Project1/Loops.h
@@ -1 +1,11 @@
-#pragma once
+#ifndef Loops
+#define Loops
+
+void ForLoop(size_t n);
+
+void WhileLoop(size_t n);
+
+void DoWhileLoop(size_t n);
+
+
+#endif Loops