lowercased units
[monky] / metarinfo.h
1 /*
2  * Conky, a system monitor, based on torsmo
3  *
4  * This program is licensed under BSD license, read COPYING
5  *
6  *  $Id$
7  */
8
9 #include <stdio.h>
10 #include <stdlib.h>
11 #include <math.h>
12
13 int calculateRelativeHumidity(int, int);
14 int calculateWindChill(int, int);
15 int knTokph(int);
16 const char *calculateWindDirectionString(int);
17 const char *calculateShortWindDirectionString(int);
18
19 char *line = NULL;
20 char *metar_station = NULL;
21 char *metar_server = NULL;
22 char *metar_path = NULL;
23 char ftp_ok = 0;
24 char metar_worked = 0;
25
26 Decoded_METAR data;