We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
i was looking for a the that comparable to isErevRoshChodesh in kosherZmanim, but i can't seem to find one, to me it looks like it would be like this:
bool isMacharRoshChodesh(const hdate hebrewDate) { return hebrewDate.day == 29 && hebrewDate.month != 6; }
The text was updated successfully, but these errors were encountered:
there is none ... i added myslef i think it's correct... ask yparitcher ...
case ROSH_CHODESH: return "ראש חודש";
this :
case EREV_ROSH_CHODESH: return "ערב ראש חודש";
2.hebrewcalander.c : add : ( better after the getroshchodesh function... )
yomtov geterevroshchodesh(hdate date) { if (date.day == 29 && date.month != 6) // 6 for elul ... {return EREV_ROSH_CHODESH;} return CHOL; }
and add: ( better after yomtov getroshchodesh(hdate date); ... ) yomtov geterevroshchodesh(hdate date);
yomtov geterevroshchodesh(hdate date);
Sorry, something went wrong.
No branches or pull requests
i was looking for a the that comparable to isErevRoshChodesh in kosherZmanim, but i can't seem to find one, to me it looks like it would be like this:
The text was updated successfully, but these errors were encountered: