Blame lib/scanner.h

Packit 53d5b6
/*
Packit 53d5b6
    scanner.h - Part of libsensors, a Linux library for reading sensor data.
Packit 53d5b6
    Copyright (c) 2006 Mark M. Hoffman <mhoffman@lightlink.com>
Packit 53d5b6
Packit 53d5b6
    This library is free software; you can redistribute it and/or
Packit 53d5b6
    modify it under the terms of the GNU Lesser General Public
Packit 53d5b6
    License as published by the Free Software Foundation; either
Packit 53d5b6
    version 2.1 of the License, or (at your option) any later version.
Packit 53d5b6
Packit 53d5b6
    This library is distributed in the hope that it will be useful,
Packit 53d5b6
    but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit 53d5b6
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
Packit 53d5b6
    GNU Lesser General Public License for more details.
Packit 53d5b6
Packit 53d5b6
    You should have received a copy of the GNU General Public License
Packit 53d5b6
    along with this program; if not, write to the Free Software
Packit 53d5b6
    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
Packit 53d5b6
    MA 02110-1301 USA.
Packit 53d5b6
*/
Packit 53d5b6
Packit 53d5b6
#ifndef LIB_SENSORS_SCANNER_H
Packit 53d5b6
#define LIB_SENSORS_SCANNER_H
Packit 53d5b6
Packit 53d5b6
int sensors_scanner_init(FILE *input, const char *filename);
Packit 53d5b6
void sensors_scanner_exit(void);
Packit 53d5b6
Packit 53d5b6
#endif /* def LIB_SENSORS_SCANNER_H */
Packit 53d5b6