2007-09-05 20:10:00 +00:00
|
|
|
/*
|
2007-09-05 20:12:52 +00:00
|
|
|
init.h - Part of libsensors, a Linux library for reading sensor data.
|
2014-03-20 10:23:35 +00:00
|
|
|
Copyright (C) 2007-2010 Jean Delvare <jdelvare@suse.de>
|
2007-09-05 20:10:00 +00:00
|
|
|
|
2010-07-01 11:56:42 +00:00
|
|
|
This library is free software; you can redistribute it and/or
|
|
|
|
modify it under the terms of the GNU Lesser General Public
|
|
|
|
License as published by the Free Software Foundation; either
|
|
|
|
version 2.1 of the License, or (at your option) any later version.
|
2007-09-05 20:10:00 +00:00
|
|
|
|
2010-07-01 11:56:42 +00:00
|
|
|
This library is distributed in the hope that it will be useful,
|
2007-09-05 20:10:00 +00:00
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
2010-07-01 11:56:42 +00:00
|
|
|
GNU Lesser General Public License for more details.
|
2007-09-05 20:10:00 +00:00
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program; if not, write to the Free Software
|
2008-03-26 13:37:12 +00:00
|
|
|
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
|
|
|
|
MA 02110-1301 USA.
|
2007-09-05 20:10:00 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef LIB_SENSORS_INIT_H
|
|
|
|
#define LIB_SENSORS_INIT_H
|
|
|
|
|
|
|
|
#include "data.h"
|
|
|
|
|
2008-07-14 16:21:48 +00:00
|
|
|
void sensors_free_expr(sensors_expr *expr);
|
2007-09-05 20:10:00 +00:00
|
|
|
|
|
|
|
#endif /* def LIB_SENSORS_INIT_H */
|