From a6a86fd67296838761e81b7a8c4e2cb0e6dcd6f7 Mon Sep 17 00:00:00 2001 From: Connor McDowell Date: Tue, 30 Jan 2024 12:11:00 -0800 Subject: all loops created, header called, both .cpps working as expected --- Project1/Loops.h | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) (limited to 'Project1/Loops.h') 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 -- cgit v1.2.3