summaryrefslogtreecommitdiffstats
path: root/5/8.c
diff options
context:
space:
mode:
authorSadeep Madurange <smadurange@users.noreply.github.com>2022-01-04 18:36:04 +0800
committerSadeep Madurange <smadurange@users.noreply.github.com>2022-01-04 18:36:04 +0800
commitaee53a9e46d7045b199c5e18324b549285b008ea (patch)
tree2a818e8a5be3306df1dfd6e210eb79fd16468b77 /5/8.c
parentdca8a74167a4abd4d7962a68144114a2b185fd0d (diff)
downloadk&r-exercises-aee53a9e46d7045b199c5e18324b549285b008ea.tar.gz
5.8
Diffstat (limited to '5/8.c')
-rw-r--r--5/8.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/5/8.c b/5/8.c
index d8db47c..a659364 100644
--- a/5/8.c
+++ b/5/8.c
@@ -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; }