/usr/include/libical/icallangbind.h is in libical-dev 2.0.0-0.5+b1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 | /*======================================================================
FILE: icallangbind.h
CREATOR: eric 25 jan 2001
(C) COPYRIGHT 1999 Eric Busboom <eric@softwarestudio.org>
http://www.softwarestudio.org
This program is free software; you can redistribute it and/or modify
it under the terms of either:
The LGPL as published by the Free Software Foundation, version
2.1, available at: http://www.gnu.org/licenses/lgpl-2.1.html
Or:
The Mozilla Public License Version 1.0. You may obtain a copy of
the License at http://www.mozilla.org/MPL/
======================================================================*/
#ifndef ICALLANGBIND_H
#define ICALLANGBIND_H
#include "libical_ical_export.h"
#include "icalcomponent.h"
#include "icalproperty.h"
LIBICAL_ICAL_EXPORT int *icallangbind_new_array(int size);
LIBICAL_ICAL_EXPORT void icallangbind_free_array(int *array);
LIBICAL_ICAL_EXPORT int icallangbind_access_array(int *array, int index);
LIBICAL_ICAL_EXPORT icalproperty *icallangbind_get_property(icalcomponent *c,
int n, const char *prop);
LIBICAL_ICAL_EXPORT const char *icallangbind_get_property_val(icalproperty *p);
LIBICAL_ICAL_EXPORT const char *icallangbind_get_parameter(icalproperty *p, const char *parameter);
LIBICAL_ICAL_EXPORT icalcomponent *icallangbind_get_component(icalcomponent *c, const char *comp);
LIBICAL_ICAL_EXPORT icalproperty *icallangbind_get_first_property(icalcomponent *c,
const char *prop);
LIBICAL_ICAL_EXPORT icalproperty *icallangbind_get_next_property(icalcomponent *c,
const char *prop);
LIBICAL_ICAL_EXPORT icalcomponent *icallangbind_get_first_component(icalcomponent *c,
const char *comp);
LIBICAL_ICAL_EXPORT icalcomponent *icallangbind_get_next_component(icalcomponent *c,
const char *comp);
LIBICAL_ICAL_EXPORT icalparameter *icallangbind_get_first_parameter(icalproperty *prop);
LIBICAL_ICAL_EXPORT icalparameter *icallangbind_get_next_parameter(icalproperty *prop);
LIBICAL_ICAL_EXPORT const char *icallangbind_property_eval_string(icalproperty *prop, char *sep);
LIBICAL_ICAL_EXPORT char *icallangbind_property_eval_string_r(icalproperty *prop, char *sep);
LIBICAL_ICAL_EXPORT int icallangbind_string_to_open_flag(const char *str);
LIBICAL_ICAL_EXPORT const char *icallangbind_quote_as_ical(const char *str);
LIBICAL_ICAL_EXPORT char *icallangbind_quote_as_ical_r(const char *str);
#endif
|