aboutsummaryrefslogtreecommitdiff
path: root/src/util.h
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/util.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/util.h b/src/util.h
index 0c2f0eb..c284880 100644
--- a/src/util.h
+++ b/src/util.h
@@ -167,6 +167,12 @@ namespace Bu
167 return *a > *b; 167 return *a > *b;
168 } 168 }
169 }; 169 };
170
171 /**
172 * Get the number of days in the month in the gregorian calendar, taking
173 * leap years into account.
174 */
175 int getDaysInMonth( int iMonth, int iYear );
170}; 176};
171 177
172#endif 178#endif