aboutsummaryrefslogtreecommitdiff
path: root/Project1/Loops.h
diff options
context:
space:
mode:
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