mirror of
https://github.com/Llewellynvdm/conky.git
synced 2024-11-05 21:07:52 +00:00
a3106fac72
git-svn-id: https://conky.svn.sourceforge.net/svnroot/conky/trunk/conky@57 7f574dfc-610e-0410-a909-a81674777703
27 lines
538 B
C
27 lines
538 B
C
/*
|
|
* Conky, a system monitor, based on torsmo
|
|
*
|
|
* This program is licensed under BSD license, read COPYING
|
|
*
|
|
* $Id$
|
|
*/
|
|
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <math.h>
|
|
|
|
int calculateRelativeHumidity(int, int);
|
|
int calculateWindChill(int, int);
|
|
int knTokph(int);
|
|
const char *calculateWindDirectionString(int);
|
|
const char *calculateShortWindDirectionString(int);
|
|
|
|
char *line = NULL;
|
|
char *metar_station = NULL;
|
|
char *metar_server = NULL;
|
|
char *metar_path = NULL;
|
|
char ftp_ok = 0;
|
|
char metar_worked = 0;
|
|
|
|
Decoded_METAR data;
|