1 /******************************************************************************
2  *                    Internetting Cooperating Programmers
3  * ----------------------------------------------------------------------------
4  *
5  *  ____    PROJECT
6  * |  _ \  __ _ _ __   ___ ___ _ __
7  * | | | |/ _` | '_ \ / __/ _ \ '__|
8  * | |_| | (_| | | | | (_|  __/ |
9  * |____/ \__,_|_| |_|\___\___|_|   the IRC bot
10  *
11  * All files in this archive are subject to the GNU General Public License.
12  *
13  * $Source: /cvsroot/dancer/dancer/src/convert.h,v $
14  * $Revision: 1.1.1.1 $
15  * $Date: 2000/11/13 02:42:41 $
16  * $Author: holsta $
17  * $State: Exp $
18  * $Locker:  $
19  *
20  * ---------------------------------------------------------------------------
21  *****************************************************************************/
22 
23 #ifndef CONVERT_H
24 #define CONVERT_H
25 
26 typedef struct {
27   char  *name;
28   int	hdiff;
29   int	mdiff;
30   ulong sig;
31   ulong let;
32 } tz;
33 
34 
35 void TimeZoneInit(void);
36 void Convert(char *from, char *line);
37 void TimeZone(char *from, char *line);
38 void Exchange(char *from, char *line);
39 
40 #endif /* CONVERT_H */
41