changes related to temperature and layout
[monky] / src / core.h
1 /* -*- mode: c; c-basic-offset: 4; tab-width: 4; indent-tabs-mode: t -*-
2  * vim: ts=4 sw=4 noet ai cindent syntax=c
3  *
4  * Conky, a system monitor, based on torsmo
5  *
6  * Any original torsmo code is licensed under the BSD license
7  *
8  * All code written since the fork of torsmo is licensed under the GPL
9  *
10  * Please see COPYING for details
11  *
12  * Copyright (c) 2004, Hannu Saransaari and Lauri Hakkarainen
13  * Copyright (c) 2005-2010 Brenden Matthews, Philip Kovacs, et. al.
14  *      (see AUTHORS)
15  * All rights reserved.
16  *
17  * This program is free software: you can redistribute it and/or modify
18  * it under the terms of the GNU General Public License as published by
19  * the Free Software Foundation, either version 3 of the License, or
20  * (at your option) any later version.
21  *
22  * This program is distributed in the hope that it will be useful,
23  * but WITHOUT ANY WARRANTY; without even the implied warranty of
24  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
25  * GNU General Public License for more details.
26  * You should have received a copy of the GNU General Public License
27  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
28  *
29  */
30
31 #ifndef _CONKY_CORE_H_
32 #define _CONKY_CORE_H_
33
34 #include "conky.h"
35
36 struct text_object *construct_text_object(const char *s, const char *arg, long
37                 line, void **ifblock_opaque, void *free_at_crash);
38
39 size_t remove_comments(char *string);
40
41 int extract_variable_text_internal(struct text_object *retval, const char *const_p);
42
43 void free_text_objects(struct text_object *root, int internal);
44
45 const char *dev_name(const char *);
46
47 #endif /* _CONKY_CORE_H_ */