blob: 96650f44c795df5e13c5ab9c78862693d85a0b5c (
plain)
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
|
/*======================================================================
FILE: testvcal.c
CREATOR: eric 26 May 2000
(C) COPYRIGHT 2000 Eric Busboom <eric@civicknowledge.com>
This library 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: https://www.gnu.org/licenses/lgpl-2.1.html
Or:
The Mozilla Public License Version 2.0. You may obtain a copy of
the License at https://www.mozilla.org/MPL/
The Original Code is eric. The Initial Developer of the Original
Code is Eric Busboom
======================================================================*/
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include "libicalvcal/icalvcal.h"
#include "libicalvcal/vcc.h"
#include <assert.h>
/* Given a vCal data file as its first argument, this program will
print out an equivalent iCal component.
For instance:
./testvcal ../../test-data/user-cal.vcf
*/
int main(int argc, char *argv[])
{
VObject *vcal = 0;
icalcomponent *comp;
const char *file;
if (argc != 2) {
file = TEST_DATADIR "/user-cal.vcf";
} else {
file = argv[1];
}
vcal = Parse_MIME_FromFileName(file);
assert(vcal != 0);
comp = icalvcal_convert(vcal);
printf("%s\n", icalcomponent_as_ical_string(comp));
icalcomponent_free(comp);
return 0;
}
|