1
0
mirror of https://github.com/Llewellynvdm/conky.git synced 2024-12-26 12:27:52 +00:00

move and add function prototypes to src/conky.c

This commit is contained in:
Phil Sutter 2008-12-22 17:55:21 +01:00
parent da7bc63996
commit 2de1840b39

View File

@ -138,6 +138,10 @@ static void signal_handler(int);
static void print_version(void) __attribute__((noreturn));
static void reload_config(void);
static void clean_up(void);
static void generate_text_internal(char *, int, struct text_object,
struct information *);
static int extract_variable_text_internal(struct text_object *,
const char *, char);
static void print_version(void)
{
@ -1154,9 +1158,6 @@ static void human_readable(long long num, char *buf, int size)
/* global object list root element */
static struct text_object global_root_object;
static void generate_text_internal(char *p, int p_max_size,
struct text_object text_object, struct information *cur);
static inline void read_exec(const char *data, char *buf, const int size)
{
FILE *fp = popen(data, "r");