aboutsummaryrefslogtreecommitdiff
path: root/Project1/helpers.h
diff options
context:
space:
mode:
authoraustinlujan <[email protected]>2024-03-19 00:21:47 -0700
committeraustinlujan <[email protected]>2024-03-19 00:21:47 -0700
commitd245d5794be59d0ec8fae011e3623436d9d40658 (patch)
tree5a604fdc404228e30445b1889882fb1643e99303 /Project1/helpers.h
parentadd deadline (diff)
downloadin-class-exercise-5-austinlujan-main.tar.xz
in-class-exercise-5-austinlujan-main.zip
implemented and tested exercise 5 functionsHEADmain
Diffstat (limited to 'Project1/helpers.h')
-rw-r--r--Project1/helpers.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/Project1/helpers.h b/Project1/helpers.h
new file mode 100644
index 0000000..6943230
--- /dev/null
+++ b/Project1/helpers.h
@@ -0,0 +1,15 @@
+#ifndef MY_HEADER_FILE_H
+#define MY_HEADER_FILE_H
+
+int returnInt();
+
+int sum(int a, int b);
+
+float percentage(int a, int b);
+
+float FtoC(int fah);
+
+float CtoF(int cel);
+
+#endif // !MY_HEADER_FILE_H
+