view src/libical-test.c @ 2338:ecc478b45d13

Move more relevant information to the top of the "Download" section
author Volker Grabsch <vog@notjusthosting.com>
date Wed, 28 Mar 2012 16:14:40 +0200
parents f653602a0500
children 8a6c466753e2
line wrap: on
line source

/* This file is part of MXE.                   */
/* See doc/index.html for further information. */

#include <stdio.h>
#include <libical/ical.h>

int main(int argc, char *argv[])
{
    icalvalue *v; 
    char *str;
    (void)argc;
    (void)argv;
    
    v = icalvalue_new_caladdress("cap://value/1");
    str = icalvalue_as_ical_string_r(v);
    printf("String: %s\n", str);

    return 0;
}