aboutsummaryrefslogtreecommitdiff
path: root/helper.h
diff options
context:
space:
mode:
authorConnor McDowell <[email protected]>2024-01-25 11:33:49 -0800
committerConnor McDowell <[email protected]>2024-01-25 11:33:49 -0800
commit3e0234c835ac623e259371c75cf6570feedea3ac (patch)
treef2ef26b8a72daacf5646017fe6fdb9ec8836a98b /helper.h
parentadd deadline (diff)
downloadin-class-exercise-5-connormcdowell275-3e0234c835ac623e259371c75cf6570feedea3ac.tar.xz
in-class-exercise-5-connormcdowell275-3e0234c835ac623e259371c75cf6570feedea3ac.zip
added excersize 5 into file.
Diffstat (limited to 'helper.h')
-rw-r--r--helper.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/helper.h b/helper.h
new file mode 100644
index 0000000..39f5d52
--- /dev/null
+++ b/helper.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
+