diff options
| author | Sadeep Madurange <smadurange@users.noreply.github.com> | 2022-01-04 18:36:04 +0800 |
|---|---|---|
| committer | Sadeep Madurange <smadurange@users.noreply.github.com> | 2022-01-04 18:36:04 +0800 |
| commit | aee53a9e46d7045b199c5e18324b549285b008ea (patch) | |
| tree | 2a818e8a5be3306df1dfd6e210eb79fd16468b77 /5/8.c | |
| parent | dca8a74167a4abd4d7962a68144114a2b185fd0d (diff) | |
| download | k&r-exercises-aee53a9e46d7045b199c5e18324b549285b008ea.tar.gz | |
5.8
Diffstat (limited to '5/8.c')
| -rw-r--r-- | 5/8.c | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -1,6 +1,9 @@ #include <stdio.h> +/* Sets day of year from month and day */ int day_of_year(int year, int month, int day); + +/* Sets month and day from day of year */ void month_day(int year, int yearday, int *pmonth, int *pday); int main() { return 0; } |
