diff options
| author | Connor McDowell <[email protected]> | 2024-02-09 15:28:14 -0800 |
|---|---|---|
| committer | Connor McDowell <[email protected]> | 2024-02-09 15:28:14 -0800 |
| commit | 1ae8226772a6a1f519b08d3287de8914ce25b0a9 (patch) | |
| tree | 479db8846abd519719b568aba85eb9fe0470e493 /Project1/header.h | |
| parent | created user dob struct and functions (diff) | |
| download | archived-homework-4-connormcdowell275-1ae8226772a6a1f519b08d3287de8914ce25b0a9.tar.xz archived-homework-4-connormcdowell275-1ae8226772a6a1f519b08d3287de8914ce25b0a9.zip | |
re-organized existing functions and structs
Diffstat (limited to 'Project1/header.h')
| -rw-r--r-- | Project1/header.h | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/Project1/header.h b/Project1/header.h index 6b81769..0530417 100644 --- a/Project1/header.h +++ b/Project1/header.h @@ -1,6 +1,13 @@ #ifndef HEADER #define HEADER +struct userDoB { + int month; + int day; + int year; +}; + + int print100(); void printUser(userDoB newUser); @@ -8,5 +15,4 @@ void printUser(userDoB newUser); userDoB inputPersonal(); - #endif HEADER
\ No newline at end of file |