Libical API Documentation 4.0 UNRELEASED Go to the stable 3.0 documentation
Loading...
Searching...
No Matches
byref.c
Go to the documentation of this file.
1/*======================================================================
2 FILE: byref.c
3 CREATOR: Siam.Smeets 18 Nov 24
4
5 SPDX-FileCopyrightText: 2024, Siam Smeets <siam.smeets@dataaccess.eu>
6 SPDX-License-Identifier: LGPL-2.1-only OR MPL-2.0
7======================================================================*/
8
9// There are multiple languages that only support pointers but not structures directly as interop.
10// This file functions as a mapper to oversee this.
11
20
21#ifdef HAVE_CONFIG_H
22#include <config.h>
23#endif
24
25#include "icaltimezone.h"
26
35LIBICAL_ICAL_EXPORT void icaltime_current_time_with_zone_ex(const icaltimezone *zone, struct icaltimetype *ret_tt)
36{
37 *ret_tt = icaltime_current_time_with_zone(zone);
38}
void icaltime_current_time_with_zone_ex(const icaltimezone *zone, struct icaltimetype *ret_tt)
Definition byref.c:35
struct icaltimetype icaltime_current_time_with_zone(const icaltimezone *zone)
Definition icaltime.c:249
Timezone handling routines.
struct _icaltimezone icaltimezone