diff options
| author | austinlujan <[email protected]> | 2024-03-20 20:10:57 -0700 |
|---|---|---|
| committer | austinlujan <[email protected]> | 2024-03-20 20:10:57 -0700 |
| commit | 1147ba66743e8fa60247398c5477fecdf241fccd (patch) | |
| tree | 13338b6f4bd187560ac92941c617d04547e13a7a /Project1/helpers.h | |
| parent | add deadline (diff) | |
| download | in-class-exercise-6-austinlujan-main.tar.xz in-class-exercise-6-austinlujan-main.zip | |
Diffstat (limited to 'Project1/helpers.h')
| -rw-r--r-- | Project1/helpers.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/Project1/helpers.h b/Project1/helpers.h new file mode 100644 index 0000000..69ea085 --- /dev/null +++ b/Project1/helpers.h @@ -0,0 +1,14 @@ +#ifndef MY_HEADER_FILE_H +#define MY_HEADER_FILE_H + +int math_func(); + +int math_func(int square); + +int math_func(int a, int b); + +int math_func(int A, int B, int C, int x = 2); + + + +#endif // !MY_HEADER_FILE_H |