summaryrefslogtreecommitdiff
path: root/Project1/header.h
diff options
context:
space:
mode:
authorConnor McDowell <[email protected]>2024-01-25 18:26:39 -0800
committerConnor McDowell <[email protected]>2024-01-25 18:26:39 -0800
commit0d711b8f35474ea0a93fdedf47dd86d0aa102986 (patch)
treedaeab51e541b981b21db58918ead6aa46712c90c /Project1/header.h
parententering filler (diff)
downloadin-class-exercise-6-connormcdowell275-0d711b8f35474ea0a93fdedf47dd86d0aa102986.tar.xz
in-class-exercise-6-connormcdowell275-0d711b8f35474ea0a93fdedf47dd86d0aa102986.zip
big double check, everything should be working now actually, we're good
Diffstat (limited to 'Project1/header.h')
-rw-r--r--Project1/header.h8
1 files changed, 5 insertions, 3 deletions
diff --git a/Project1/header.h b/Project1/header.h
index 46ecf39..a172276 100644
--- a/Project1/header.h
+++ b/Project1/header.h
@@ -1,4 +1,6 @@
-#pragma once
+#ifndef MY_HEADER_FILE_H
+#define MY_HEADER_FILE_H
+
int returnInt();
int sum(int a, int b);
@@ -7,6 +9,6 @@ float percentage(int a, int b);
float FtoC(int fah);
-float CtoF(int cel)
+float CtoF(int cel);
-# \ No newline at end of file
+#endif MY_HEADER_FILE_H \ No newline at end of file