-
Notifications
You must be signed in to change notification settings - Fork 45
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
6cfa33e
commit 5193dfc
Showing
7 changed files
with
217 additions
and
187 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,12 @@ | ||
#ifndef ISO_CALENDER_H | ||
#define ISO_CALENDER_H | ||
|
||
int iso_to_ymd(const int iso_year, const int iso_week, const int iso_day, | ||
int | ||
iso_to_ymd(const int iso_year, const int iso_week, const int iso_day, | ||
int *year, int *month, int *day); | ||
|
||
int ordinal_to_ymd(const int iso_year, const int ordinal_day, | ||
int *year, int *month, int *day); | ||
int | ||
ordinal_to_ymd(const int iso_year, const int ordinal_day, int *year, | ||
int *month, int *day); | ||
|
||
#endif |
Oops, something went wrong.