From 76ea9b2ffa8abb3aa56bbc5e59acc0a8ba3d1202 Mon Sep 17 00:00:00 2001 From: Allen Winter Date: Wed, 8 Dec 2021 18:46:04 -0500 Subject: update apidox --- apidocs/icaltime_8h_source.html | 84 ++++++++++++++++++++--------------------- 1 file changed, 42 insertions(+), 42 deletions(-) (limited to 'apidocs/icaltime_8h_source.html') diff --git a/apidocs/icaltime_8h_source.html b/apidocs/icaltime_8h_source.html index a93a7610..4b48ccd0 100644 --- a/apidocs/icaltime_8h_source.html +++ b/apidocs/icaltime_8h_source.html @@ -3,7 +3,7 @@ - + Libical API Documentation: icaltime.h Source File @@ -30,10 +30,10 @@ - + @@ -99,7 +99,7 @@ $(function() {
85 #include <time.h>
86 
87 /* An opaque struct representing a timezone. We declare this here to avoid
-
88  a circular dependancy. */
+
88  a circular dependency. */
89 #if !defined(ICALTIMEZONE_DEFINED)
90 #define ICALTIMEZONE_DEFINED
91 typedef struct _icaltimezone icaltimezone;
@@ -212,55 +212,55 @@ $(function() {
425 LIBICAL_ICAL_EXPORT int icaltime_span_contains(icaltime_span *s, icaltime_span *container);
426 
427 #endif /* !ICALTIME_H */
- +
int icaltime_is_utc(const struct icaltimetype t)
Returns true if the time is relative to UTC zone.
Definition: icaltime.c:604
+
int icaltime_compare(const struct icaltimetype a, const struct icaltimetype b)
Returns -1, 0, or 1 to indicate that a is less than b, a equals b, or a is greater than b.
Definition: icaltime.c:618
+
int icaltime_compare_date_only(const struct icaltimetype a, const struct icaltimetype b)
Like icaltime_compare, but only use the date parts.
Definition: icaltime.c:673
+
int icaltime_span_contains(icaltime_span *s, icaltime_span *container)
Returns true if the span is totally within the containing span.
Definition: icaltime.c:940
+
struct icaltimetype icaltime_from_string(const char *str)
Constructor.
Definition: icaltime.c:339
+
char * icaltime_as_ical_string_r(const struct icaltimetype tt)
Returns a string represention of the time, in RFC5545 format.
Definition: icaltime.c:309
+
struct icaltimetype icaltime_from_day_of_year(const int doy, const int year)
Constructor.
Definition: icaltime.c:527
+
struct icaltimetype icaltime_current_time_with_zone(const icaltimezone *zone)
Convenience constructor.
Definition: icaltime.c:221
+
int icaltime_day_of_year(const struct icaltimetype t)
Returns the day of the year, counting from 1 (Jan 1st).
Definition: icaltime.c:520
+
int icaltime_start_doy_week(const struct icaltimetype t, int fdow)
Returns the day of the year for the first day of the week that the given time is within.
Definition: icaltime.c:477
+
struct icaltime_span icaltime_span_new(struct icaltimetype dtstart, struct icaltimetype dtend, int is_busy)
Builds an icaltimespan given a start time, end time and busy value.
Definition: icaltime.c:884
+
time_t icaltime_as_timet_with_zone(const struct icaltimetype tt, const icaltimezone *zone)
Returns the time as seconds past the UNIX epoch, using the given timezone.
Definition: icaltime.c:262
+
int icaltime_week_number(const struct icaltimetype t)
Returns the week number for the week the given time is within.
Definition: icaltime.c:501
+
int icaltime_day_of_week(const struct icaltimetype t)
Returns the day of the week of the given time.
Definition: icaltime.c:459
+
const char * icaltime_as_ical_string(const struct icaltimetype tt)
Returns a string represention of the time, in RFC5545 format.
Definition: icaltime.c:300
+
int icaltime_is_date(const struct icaltimetype t)
Returns true if time is a DATE.
Definition: icaltime.c:599
+
const icaltimezone * icaltime_get_timezone(const struct icaltimetype t)
Returns the timezone.
Definition: icaltime.c:854
+
struct icaltimetype icaltime_today(void)
Convenience constructor.
Definition: icaltime.c:226
+
time_t icaltime_as_timet(const struct icaltimetype)
Definition: icaltime.c:231
+
struct icaltimetype icaltime_null_date(void)
Constructor.
Definition: icaltime.c:571
+
struct icaltimetype icaltime_from_timet_with_zone(const time_t tm, const int is_date, const icaltimezone *zone)
Constructor.
Definition: icaltime.c:183
int icaltime_span_overlaps(icaltime_span *s1, icaltime_span *s2)
Returns true if the two spans overlap.
Definition: icaltime.c:916
+
int icaltime_is_null_time(const struct icaltimetype t)
Returns true if the time is null.
Definition: icaltime.c:609
+
int icaltime_days_in_month(const int month, const int year)
Definition: icaltime.c:435
+
struct icaltimetype icaltime_convert_to_zone(const struct icaltimetype tt, icaltimezone *zone)
Converts time to a given timezone.
Definition: icaltime.c:825
+
int icaltime_is_valid_time(const struct icaltimetype t)
Returns false if the time is clearly invalid, but is not null.
Definition: icaltime.c:590
+
struct icaltimetype icaltime_normalize(const struct icaltimetype t)
Normalizes the icaltime, so all of the time components are in their normal ranges.
Definition: icaltime.c:331
+
int icaltime_compare_date_only_tz(const struct icaltimetype a, const struct icaltimetype b, icaltimezone *tz)
Like icaltime_compare, but only use the date parts; accepts timezone.
Definition: icaltime.c:703
+
int icaltime_days_in_year(const int year)
Definition: icaltime.c:424
const char * icaltime_get_tzid(const struct icaltimetype t)
Returns the tzid, or NULL for a floating time.
Definition: icaltime.c:859
-
int is_daylight
Definition: icaltime.h:115
+
int icaltime_is_leap_year(const int year)
Returns whether the specified year is a leap year.
Definition: icaltime.c:415
struct icaltimetype icaltime_set_timezone(struct icaltimetype *t, const icaltimezone *zone)
Sets the timezone.
Definition: icaltime.c:868
-
const char * icaltime_as_ical_string(const struct icaltimetype tt)
Returns a string represention of the time, in RFC5545 format.
Definition: icaltime.c:300
-
const icaltimezone * zone
Definition: icaltime.h:117
-
struct icaltimetype icaltime_from_string(const char *str)
Contructor.
Definition: icaltime.c:339
+
void icaltime_adjust(struct icaltimetype *tt, const int days, const int hours, const int minutes, const int seconds)
Internal, shouldn't be part of the public API.
Definition: icaltime.c:740
struct icaltimetype icaltime_null_time(void)
Constructor.
Definition: icaltime.c:562
-
const icaltimezone * icaltime_get_timezone(const struct icaltimetype t)
Returns the timezone.
Definition: icaltime.c:854
-
int icaltime_is_date(const struct icaltimetype t)
Returns true if time is a DATE.
Definition: icaltime.c:599
-
int icaltime_is_leap_year(const int year)
Returns whether the specified year is a leap year.
Definition: icaltime.c:415
-
time_t icaltime_as_timet_with_zone(const struct icaltimetype tt, const icaltimezone *zone)
Returns the time as seconds past the UNIX epoch, using the given timezone.
Definition: icaltime.c:262
-
int icaltime_span_contains(icaltime_span *s, icaltime_span *container)
Returns true if the span is totally within the containing span.
Definition: icaltime.c:940
+
Definition: icaltimezoneimpl.h:23
Definition: icaltime.h:96
-
int icaltime_days_in_month(const int month, const int year)
Definition: icaltime.c:435
-
int icaltime_day_of_year(const struct icaltimetype t)
Returns the day of the year, counting from 1 (Jan 1st).
Definition: icaltime.c:520
-
int icaltime_compare_date_only_tz(const struct icaltimetype a, const struct icaltimetype b, icaltimezone *tz)
Like icaltime_compare, but only use the date parts; accepts timezone.
Definition: icaltime.c:703
-
struct icaltimetype icaltime_today(void)
Convenience constructor.
Definition: icaltime.c:226
-
int icaltime_is_utc(const struct icaltimetype t)
Returns true if the time is relative to UTC zone.
Definition: icaltime.c:604
time_t start
Definition: icaltime.h:97
-
Definition: icaltime.h:105
-
int icaltime_start_doy_week(const struct icaltimetype t, int fdow)
Returns the day of the year for the first day of the week that the given time is within.
Definition: icaltime.c:477
-
char * icaltime_as_ical_string_r(const struct icaltimetype tt)
Returns a string represention of the time, in RFC5545 format.
Definition: icaltime.c:309
-
time_t icaltime_as_timet(const struct icaltimetype)
Definition: icaltime.c:231
-
int icaltime_is_null_time(const struct icaltimetype t)
Returns true if the time is null.
Definition: icaltime.c:609
+
time_t end
Definition: icaltime.h:98
int is_busy
Definition: icaltime.h:99
-
int icaltime_days_in_year(const int year)
Definition: icaltime.c:424
-
int icaltime_is_valid_time(const struct icaltimetype t)
Returns false if the time is clearly invalid, but is not null.
Definition: icaltime.c:590
+
Definition: icaltime.h:105
+
int is_date
Definition: icaltime.h:113
int year
Definition: icaltime.h:106
-
struct icaltime_span icaltime_span_new(struct icaltimetype dtstart, struct icaltimetype dtend, int is_busy)
Builds an icaltimespan given a start time, end time and busy value.
Definition: icaltime.c:884
-
time_t end
Definition: icaltime.h:98
+
int is_daylight
Definition: icaltime.h:115
+
const icaltimezone * zone
Definition: icaltime.h:117
int month
Definition: icaltime.h:107
-
struct icaltimetype icaltime_from_timet_with_zone(const time_t tm, const int is_date, const icaltimezone *zone)
Constructor.
Definition: icaltime.c:183
-
struct icaltimetype icaltime_normalize(const struct icaltimetype t)
Normalizes the icaltime, so all of the time components are in their normal ranges.
Definition: icaltime.c:331
-
int is_date
Definition: icaltime.h:113
-
Definition: icaltimezoneimpl.h:23
-
void icaltime_adjust(struct icaltimetype *tt, const int days, const int hours, const int minutes, const int seconds)
Internal, shouldn't be part of the public API.
Definition: icaltime.c:740
-
struct icaltimetype icaltime_from_day_of_year(const int doy, const int year)
Contructor.
Definition: icaltime.c:527
-
int icaltime_week_number(const struct icaltimetype t)
Returns the week number for the week the given time is within.
Definition: icaltime.c:501
-
int icaltime_compare_date_only(const struct icaltimetype a, const struct icaltimetype b)
Like icaltime_compare, but only use the date parts.
Definition: icaltime.c:673
-
struct icaltimetype icaltime_current_time_with_zone(const icaltimezone *zone)
Convenience constructor.
Definition: icaltime.c:221
-
int icaltime_compare(const struct icaltimetype a, const struct icaltimetype b)
Returns -1, 0, or 1 to indicate that a is less than b, a equals b, or a is greater than b.
Definition: icaltime.c:618
-
int icaltime_day_of_week(const struct icaltimetype t)
Returns the day of the week of the given time.
Definition: icaltime.c:459
-
struct icaltimetype icaltime_null_date(void)
Constructor.
Definition: icaltime.c:571
-
struct icaltimetype icaltime_convert_to_zone(const struct icaltimetype tt, icaltimezone *zone)
Converts time to a given timezone.
Definition: icaltime.c:825
+ -- cgit v1.2.1