diff options
| author | Connor McDowell <[email protected]> | 2024-01-30 12:11:00 -0800 |
|---|---|---|
| committer | Connor McDowell <[email protected]> | 2024-01-30 12:11:00 -0800 |
| commit | a6a86fd67296838761e81b7a8c4e2cb0e6dcd6f7 (patch) | |
| tree | e7fa6068de1301c48d0da45aed88b9b15b7d21cb /Project1/Loops.h | |
| parent | post notes, all comits after include exercise proper (diff) | |
| download | in-class-exercise-7-connormcdowell275-main.tar.xz in-class-exercise-7-connormcdowell275-main.zip | |
Diffstat (limited to 'Project1/Loops.h')
| -rw-r--r-- | Project1/Loops.h | 12 |
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 |