root/lm-sensors/tags/V3-0-1/lib/access.h

Revision 4902, 1.3 kB (checked in by khali, 1 year ago)

Add my copyright everywhere it is missing.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
Line 
1 /*
2     access.h - Part of libsensors, a Linux library for reading sensor data.
3     Copyright (c) 1998, 1999  Frodo Looijaard <frodol@dds.nl>
4     Copyright (C) 2007        Jean Delvare <khali@linux-fr.org>
5
6     This program is free software; you can redistribute it and/or modify
7     it under the terms of the GNU General Public License as published by
8     the Free Software Foundation; either version 2 of the License, or
9     (at your option) any later version.
10
11     This program is distributed in the hope that it will be useful,
12     but WITHOUT ANY WARRANTY; without even the implied warranty of
13     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14     GNU General Public License for more details.
15
16     You should have received a copy of the GNU General Public License
17     along with this program; if not, write to the Free Software
18     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
19 */
20
21 #ifndef LIB_SENSORS_ACCESS_H
22 #define LIB_SENSORS_ACCESS_H
23
24 #include "sensors.h"
25 #include "data.h"
26
27 /* Check whether the chip name is an 'absolute' name, which can only match
28    one chip, or whether it has wildcards. Returns 0 if it is absolute, 1
29    if there are wildcards. */
30 int sensors_chip_name_has_wildcards(const sensors_chip_name *chip);
31
32 #endif /* def LIB_SENSORS_ACCESS_H */
Note: See TracBrowser for help on using the browser.