X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fdata%2Fcalendar.h;h=02a9de28ace572aa9ddf5923e8fb61cdf8fcb85a;hb=051724c1769c04a715f00f22f75c4a810f5bff11;hp=f46e71fec0b8c32fb97b763598176a8a63bfe533;hpb=8acca2de53c1852f38726f70fc6516b34732a79f;p=pspp diff --git a/src/data/calendar.h b/src/data/calendar.h index f46e71fec0..02a9de28ac 100644 --- a/src/data/calendar.h +++ b/src/data/calendar.h @@ -1,10 +1,29 @@ +/* +PSPP - a program for statistical analysis. +Copyright (C) 2017 Free Software Foundation, Inc. + +This program is free software: you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation, either version 3 of the License, or +(at your option) any later version. + +This program is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with this program. If not, see . +*/ + #ifndef CALENDAR_H #define CALENDAR_H 1 -typedef void calendar_error_func (void *aux, const char *, ...); +struct fmt_settings; double calendar_gregorian_to_offset (int y, int m, int d, - calendar_error_func *, void *aux); + const struct fmt_settings *, + char **errorp); void calendar_offset_to_gregorian (int ofs, int *y, int *m, int *d, int *yd); int calendar_offset_to_year (int ofs); int calendar_offset_to_month (int ofs); @@ -12,4 +31,6 @@ int calendar_offset_to_mday (int ofs); int calendar_offset_to_yday (int ofs); int calendar_offset_to_wday (int ofs); +int calendar_days_in_month (int y, int m); + #endif /* calendar.h */