bump to 1.0.0 and clean up spec file
[platform/upstream/libical.git] / src / libical / icaltz-util.h
1 /* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
2 /* 
3  * Authors : 
4  *  Chenthill Palanisamy <pchenthill@novell.com>
5  *
6  * Copyright 2007, Novell, Inc.
7  *
8  * This program is free software; you can redistribute it and/or 
9  * modify it under the terms of version 2 of the GNU Lesser General Public 
10  * License as published by the Free Software Foundation.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU Lesser General Public License for more details.
16  *
17  * You should have received a copy of the GNU Lesser General Public
18  * License along with this library; if not, write to the
19  * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, 
20  * Boston, MA 02110-1301, USA.
21  */
22
23 #ifndef ICALTZUTIL_H
24 #define ICALTZUTIL_H
25
26 #include <stdio.h> 
27 #include "icaltime.h"
28 #include "icalcomponent.h"
29
30 #if defined(sun) && defined(__SVR4)
31 #define ZONES_TAB_SYSTEM_FILENAME "tab/zone_sun.tab"
32 #else
33 #define ZONES_TAB_SYSTEM_FILENAME "zone.tab"
34 #endif
35
36 const char *icaltzutil_get_zone_directory (void);
37 icalcomponent *icaltzutil_fetch_timezone (const char *location);
38
39 #endif