add emacs indentation variables to source files in line with current vim settings
[monky] / src / ibm.h
1 /* -*- mode: c; c-basic-offset: 4; tab-width: 4; indent-tabs-mode: t -*- */
2
3 #ifndef _IBM_H
4 #define _IBM_H
5
6 #include <sys/types.h>
7
8 struct ibm_acpi_struct {
9         int temps[8];
10 };
11
12 struct ibm_acpi_struct ibm_acpi;
13
14 void get_ibm_acpi_fan(char *buf, size_t client_buffer_size);
15 void get_ibm_acpi_temps(void);
16 void get_ibm_acpi_volume(char *buf, size_t client_buffer_size);
17 void get_ibm_acpi_brightness(char *buf, size_t client_buffer_size);
18
19 #endif /* _IBM_H */